Skip to content

Commit fd30a83

Browse files
committed
Drop scala-collection-compat
We used to cross-build MiMa to 2.13, but that was pointless so we dropped it (see #400).
1 parent 076fbb2 commit fd30a83

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

build.sbt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,7 @@ val functionalTests = Project("functional-tests", file("functional-tests"))
6464
.enablePlugins(TestsPlugin)
6565
.disablePlugins(BintrayPlugin)
6666
.settings(
67-
libraryDependencies ++= Seq(
68-
"com.typesafe" % "config" % "1.4.0",
69-
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.3",
70-
),
67+
libraryDependencies += "com.typesafe" % "config" % "1.4.0",
7168
mimaFailOnNoPrevious := false,
7269
skip in publish := true,
7370
)

functional-tests/src/main/scala/com/typesafe/tools/mima/lib/ProblemFiltersConfig.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package lib
33

44
import com.typesafe.tools.mima.core.{ProblemFilter, ProblemFilters}
55
import com.typesafe.config._
6-
import scala.jdk.CollectionConverters._
6+
import scala.collection.JavaConverters._
77

88
object ProblemFiltersConfig {
99
private val filterProblemsPath = "filter.problems"

0 commit comments

Comments
 (0)