Skip to content

Commit cf71d82

Browse files
committed
Add Scala 2.13.0-M4 support
- upgrade Scala version from 2.13.0-M3 to 2.13.0-M4 in `build.sbt` and `.travis.yml` - upgrade scalatest version from 3.0.5-M1 to 3.0.6-SNAP1 - upgrade stala-xml version from 1.0.6 to 1.1.0 - additionally upgrade Scala 2.12.x version from 2.12.4 to latest 2.12.6 in `build.sbt` and `.travis.yml`
1 parent b45d34b commit cf71d82

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jdk:
99
scala:
1010
- 2.10.7
1111
- 2.11.12
12-
- 2.12.4
13-
- 2.13.0-M3
12+
- 2.12.6
13+
- 2.13.0-M4
1414

1515
before_cache:
1616
- find "$HOME/.sbt/" -name '*.lock' -print0 | xargs -0 rm

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import sbtcrossproject.CrossType
77

88
val Org = "org.scoverage"
99
val MockitoVersion = "2.19.0"
10-
val ScalatestVersion = "3.0.5-M1"
10+
val ScalatestVersion = "3.0.6-SNAP1"
1111

1212
val appSettings = Seq(
1313
organization := Org,
14-
scalaVersion := "2.12.4",
15-
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.4", "2.13.0-M3"),
14+
scalaVersion := "2.12.6",
15+
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.6", "2.13.0-M4"),
1616
fork in Test := false,
1717
publishMavenStyle := true,
1818
publishArtifact in Test := false,
@@ -91,7 +91,7 @@ lazy val plugin = Project("scalac-scoverage-plugin", file("scalac-scoverage-plug
9191
)).settings(libraryDependencies ++= {
9292
CrossVersion.partialVersion(scalaVersion.value) match {
9393
case Some((2, scalaMajor)) if scalaMajor > 10 => Seq(
94-
"org.scala-lang.modules" %% "scala-xml" % "1.0.6",
94+
"org.scala-lang.modules" %% "scala-xml" % "1.1.0",
9595
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0" % "test"
9696
)
9797
case _ => Seq(

0 commit comments

Comments
 (0)