File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 16
16
scala :
17
17
- 2.11.12
18
18
- 2.12.6
19
- - 2.13.0-M3
19
+ - 2.13.0-M4
20
20
21
21
env :
22
22
global :
@@ -46,7 +46,7 @@ matrix:
46
46
jdk : openjdk11
47
47
- scala : 2.12.6
48
48
jdk : openjdk6
49
- - scala : 2.13.0-M3
49
+ - scala : 2.13.0-M4
50
50
jdk : openjdk6
51
51
52
52
script :
Original file line number Diff line number Diff line change 1
1
import sbtcrossproject .{crossProject , CrossType }
2
2
import ScalaModulePlugin ._
3
3
4
- crossScalaVersions in ThisBuild := List (" 2.12.6" , " 2.11.12" , " 2.13.0-M3 " )
4
+ crossScalaVersions in ThisBuild := List (" 2.12.6" , " 2.11.12" , " 2.13.0-M4 " )
5
5
6
6
lazy val xml = crossProject(JSPlatform , JVMPlatform )
7
7
.withoutSuffixFor(JVMPlatform )
@@ -27,7 +27,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
27
27
(unmanagedSourceDirectories in Compile ).value.map { dir =>
28
28
val sv = scalaVersion.value
29
29
CrossVersion .partialVersion(sv) match {
30
- case Some ((2 , 13 )) if ! sv.startsWith( " 2.13.0-M3 " ) => file(dir.getPath ++ " -2.13" ) // TODO: remove M3 guard once M4 is out.
30
+ case Some ((2 , 13 )) => file(dir.getPath ++ " -2.13" )
31
31
case _ => file(dir.getPath ++ " -2.11-2.12" )
32
32
}
33
33
}
You can’t perform that action at this time.
0 commit comments