File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ sbt -Dfile.encoding=UTF-8 \
88 scalafmtCheckAll \
99 scalafmtSbtCheck \
1010 Test/compile \
11+ mimaPreviousArtifacts \
1112 doc \
1213 crossTestBridges \
1314 test \
Original file line number Diff line number Diff line change @@ -8,34 +8,9 @@ def internalPath = zincRootPath / "internal"
88
99def mimaSettings : Seq [Setting [? ]] = Seq (
1010 mimaPreviousArtifacts := {
11- val pre140 = Set (
12- " 1.0.0" ,
13- " 1.0.1" ,
14- " 1.0.2" ,
15- " 1.0.3" ,
16- " 1.0.4" ,
17- " 1.0.5" ,
18- " 1.1.0" ,
19- " 1.1.1" ,
20- " 1.1.2" ,
21- " 1.1.3" ,
22- " 1.2.0" ,
23- " 1.2.1" ,
24- " 1.2.2" ,
25- " 1.3.0" ,
11+ val versions : Set [String ] = Set (
12+ " 2.0.0-M6"
2613 )
27- val post140 : Set [String ] = Set (
28- " 1.4.0" ,
29- " 1.5.0" ,
30- " 1.6.0" ,
31- " 1.7.0" ,
32- " 1.8.0" ,
33- " 1.9.0" ,
34- " 1.10.0" ,
35- )
36- val versions =
37- if (scalaVersion.value.startsWith(" 2.12." )) pre140 ++ post140
38- else post140
3914 val cross = if (crossPaths.value) CrossVersion .binary else CrossVersion .disabled
4015 versions.map(version => organization.value %% moduleName.value % version cross cross)
4116 },
You can’t perform that action at this time.
0 commit comments