File tree Expand file tree Collapse file tree 4 files changed +16
-9
lines changed
sbtplugin/src/main/scala-sbt-0.13 Expand file tree Collapse file tree 4 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 19
19
- TEST_COMMAND="test"
20
20
- TEST_COMMAND="scripted"
21
21
- TEST_COMMAND="testFunctional"
22
- - TEST_COMMAND="-Dmima.testScalaVersion=2.11.8 testFunctional"
23
- - TEST_COMMAND="-Dmima.testScalaVersion=2.12.1 testFunctional"
22
+ - TEST_COMMAND="-Dmima.testScalaVersion=2.11.11 testFunctional"
23
+ - TEST_COMMAND="-Dmima.testScalaVersion=2.12.3 testFunctional"
24
24
- TEST_COMMAND="it:test"
25
25
- TEST_COMMAND="mimaReportBinaryIssues"
26
- - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.2 ^^1.0.0-RC2 test"
27
- - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.2 ^^1.0.0-RC2 scripted"
28
- - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.2 testFunctional"
29
- - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.2 it:test"
30
- - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.2 ^^1.0.0-RC2 mimaReportBinaryIssues"
26
+ - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.3 ^^1.0.0-RC3 test"
27
+ - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.3 ^^1.0.0-RC3 scripted"
28
+ - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.3 testFunctional"
29
+ - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.3 it:test"
30
+ - TEST_COMMAND="-Dmima.buildScalaVersion=2.12.3 ^^1.0.0-RC3 mimaReportBinaryIssues"
31
31
32
32
script :
33
33
- sbt $TEST_COMMAND
Original file line number Diff line number Diff line change @@ -112,7 +112,10 @@ object MimaBuild {
112
112
publish := (),
113
113
publishLocal := (),
114
114
publishSigned := (),
115
- crossSbtVersions := List (" 0.13.16-RC1" , " 1.0.0-RC2" ),
115
+ sbtVersion in Global := " 0.13.13" , // Should be ThisBuild, but ^^ uses Global (incorrectly)
116
+ inThisBuild(Seq (
117
+ crossSbtVersions := List (" 0.13.13" , " 1.0.0-RC3" )
118
+ )),
116
119
testScalaVersion in Global := sys.props.getOrElse(" mima.testScalaVersion" , scalaVersion.value)
117
120
)
118
121
enablePlugins(GitVersioning )
Original file line number Diff line number Diff line change 1
- sbt.version =0.13.16-RC1
1
+ sbt.version =0.13.16
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ package sbt
6
6
7
7
object compat {
8
8
val scalaModuleInfo = SettingKey [Option [librarymanagement.ScalaModuleInfo ]](" ivyScala" )
9
+
10
+ implicit class ModuleIdOps (val _m : ModuleID ) extends AnyVal {
11
+ def withName (n : String ): ModuleID = _m copy (name = n)
12
+ }
9
13
}
10
14
11
15
package librarymanagement {
You can’t perform that action at this time.
0 commit comments