Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
This repository was archived by the owner on Apr 18, 2019. It is now read-only.

Commit 2e67c01

Browse files
committed
Update scalaVersion to 2.12.0-RC1 and 2.10.6
1 parent a032888 commit 2e67c01

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

maven-sample/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>sample</groupId>
55
<artifactId>scala-module-dependency-sample</artifactId>
66
<version>1.0-SNAPSHOT</version>
7-
<!-- Maven profiles allow you to support both Scala 2.10 and Scala 2.11 with
7+
<!-- Maven profiles allow you to support both Scala 2.10, 2.11 and Scala 2.12 with
88
the right dependencies for modules specified for each version separately -->
99
<profiles>
1010
<profile>
@@ -13,8 +13,8 @@
1313
<activeByDefault>true</activeByDefault>
1414
</activation>
1515
<properties>
16-
<scalaVersion>2.12.0-M4</scalaVersion>
17-
<scalaBinaryVersion>2.12.0-M4</scalaBinaryVersion>
16+
<scalaVersion>2.12.0-RC1</scalaVersion>
17+
<scalaBinaryVersion>2.12.0-RC1</scalaBinaryVersion>
1818
</properties>
1919
<dependencies>
2020
<dependency>

sbt-sample/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ organization := "sample"
44

55
version := "1.0"
66

7-
crossScalaVersions := Seq("2.12.0-M4", "2.11.8", "2.10.5")
7+
crossScalaVersions := Seq("2.12.0-RC1", "2.11.8", "2.10.6")
88

9-
scalaVersion := "2.12.0-M4"
9+
scalaVersion := "2.12.0-RC1"
1010

1111
// add scala-xml dependency when needed (for Scala 2.11 and newer) in a robust way
1212
// this mechanism supports cross-version publishing

0 commit comments

Comments
 (0)