1
1
import sbtcrossproject .{crossProject , CrossType }
2
2
import ScalaModulePlugin ._
3
3
4
- crossScalaVersions in ThisBuild := List (" 2.12.8 " , " 2.11.12" , " 2.13.0 " )
4
+ crossScalaVersions in ThisBuild := List (" 2.12.10 " , " 2.11.12" , " 2.13.1 " )
5
5
6
6
lazy val xml = crossProject(JSPlatform , JVMPlatform )
7
7
.withoutSuffixFor(JVMPlatform )
@@ -11,7 +11,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
11
11
.jvmSettings(scalaModuleSettingsJVM)
12
12
.settings(
13
13
name := " scala-xml" ,
14
- version := " 1.2.1 -SNAPSHOT" ,
14
+ version := " 1.3.0 -SNAPSHOT" ,
15
15
16
16
// this line could be removed after https://github.com/scala/sbt-scala-module/issues/48 is fixed
17
17
licenses := Seq ((" Apache-2.0" , url(" https://www.apache.org/licenses/LICENSE-2.0" ))),
@@ -22,7 +22,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
22
22
scalacOptions in Test += " -Xxml:coalescing" ,
23
23
24
24
mimaPreviousVersion := {
25
- if (System .getenv(" SCALAJS_VERSION" ) == " 1.0.0-M8 " ) None // No such release yet
25
+ if (System .getenv(" SCALAJS_VERSION" ) == " 1.0.0" ) None
26
26
else Some (" 1.2.0" )
27
27
},
28
28
@@ -62,9 +62,9 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
62
62
.jvmSettings(
63
63
OsgiKeys .exportPackage := Seq (s " scala.xml.*;version= ${version.value}" ),
64
64
65
- libraryDependencies += " junit" % " junit" % " 4.12 " % " test" ,
65
+ libraryDependencies += " junit" % " junit" % " 4.13 " % " test" ,
66
66
libraryDependencies += " com.novocode" % " junit-interface" % " 0.11" % " test" ,
67
- libraryDependencies += " org.apache.commons" % " commons-lang3" % " 3.5 " % " test" ,
67
+ libraryDependencies += " org.apache.commons" % " commons-lang3" % " 3.9 " % " test" ,
68
68
libraryDependencies += (" org.scala-lang" % " scala-compiler" % scalaVersion.value % " test" ).exclude(" org.scala-lang.modules" , s " scala-xml_ ${scalaBinaryVersion.value}" )
69
69
)
70
70
.jsSettings(
0 commit comments