@@ -4,9 +4,9 @@ scalaVersion in ThisBuild := crossScalaVersions.value.head
4
4
crossScalaVersions in ThisBuild := {
5
5
val java = System .getProperty(" java.version" )
6
6
if (java.startsWith(" 1.6." ) || java.startsWith(" 1.7." ))
7
- Seq (" 2.11.8 " )
7
+ Seq (" 2.11.11 " )
8
8
else if (java.startsWith(" 1.8." ) || java.startsWith(" 1.9." ))
9
- Seq (" 2.12.1 " )
9
+ Seq (" 2.12.2 " )
10
10
else
11
11
sys.error(s " don't know what Scala versions to build on $java" )
12
12
}
@@ -18,7 +18,7 @@ lazy val root = project.in(file("."))
18
18
lazy val xml = crossProject.in(file(" ." ))
19
19
.settings(
20
20
name := " scala-xml" ,
21
- version := " 1.0.6 -SNAPSHOT" ,
21
+ version := " 1.0.7 -SNAPSHOT" ,
22
22
scalacOptions ++= " -deprecation:false -feature -Xlint:-stars-align,-nullary-unit,_" .split(" \\ s+" ).to[Seq ],
23
23
scalacOptions in Test += " -Xxml:coalescing" )
24
24
.jvmSettings(
@@ -29,7 +29,7 @@ lazy val xml = crossProject.in(file("."))
29
29
libraryDependencies += " junit" % " junit" % " 4.11" % " test" ,
30
30
libraryDependencies += " com.novocode" % " junit-interface" % " 0.10" % " test" ,
31
31
libraryDependencies += (" org.scala-lang" % " scala-compiler" % scalaVersion.value % " test" ).exclude(" org.scala-lang.modules" , s " scala-xml* " ),
32
- mimaPreviousVersion := Some (" 1.0.5 " ),
32
+ mimaPreviousVersion := Some (" 1.0.6 " ),
33
33
// You cannot disable JVM test forking when working on scala modules
34
34
// that are distributed with the compiler because of an SBT
35
35
// classloader leaking issue (scala/scala-xml#20 and #112).
0 commit comments