Skip to content

Commit ae243fa

Browse files
committed
minor build.sbt updates
1 parent 22aec70 commit ae243fa

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

build.sbt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,12 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
1111
.settings(
1212
ScalaModulePlugin.scalaModuleSettings,
1313
name := "scala-parser-combinators",
14-
scalaModuleMimaPreviousVersion := (CrossVersion.partialVersion(scalaVersion.value) match {
15-
// pending resolution of https://github.com/scalacenter/sbt-version-policy/issues/62
16-
case Some((3, _)) => None
17-
case _ => Some("1.2.0-RC1")
18-
}),
14+
scalaModuleMimaPreviousVersion := Some("2.0.0"),
1915

2016
libraryDependencies += "junit" % "junit" % "4.13.2" % Test,
2117
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test,
2218
// so we can `@nowarn` in test code, but only in test code, so the dependency
23-
// doesn't leak downstream
19+
// doesn't leak downstream. can be dropped when we drop 2.11 from the crossbuild
2420
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.4.4" % Test,
2521

2622
apiMappings ++= scalaInstance.value.libraryJars.collect {

0 commit comments

Comments
 (0)