From 33e5f0f8b21ac49a6118865f1414dd1c00486aee Mon Sep 17 00:00:00 2001 From: Philippus Date: Fri, 25 Jun 2021 07:45:07 +0200 Subject: [PATCH] Remove workaround for MiMa issue --- build.sbt | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/build.sbt b/build.sbt index 2709b03f..22152dc5 100644 --- a/build.sbt +++ b/build.sbt @@ -13,15 +13,7 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor name := "scala-parser-combinators", scalaModuleAutomaticModuleName := Some("scala.util.parsing"), - // once https://github.com/lightbend/mima/issues/630 is fixed and sbt-scala-module - // adopts the fixed version, we'll be able to just do: - // scalaModuleMimaPreviousVersion := Some("2.0.0"), - // but for the time being we must still: - scalaModuleMimaPreviousVersion := (CrossVersion.partialVersion(scalaVersion.value) match { - // pending resolution of https://github.com/scalacenter/sbt-version-policy/issues/62 - case Some((3, _)) => None - case _ => Some("1.2.0-RC1") - }), + scalaModuleMimaPreviousVersion := Some("2.0.0"), libraryDependencies += "junit" % "junit" % "4.13.2" % Test, libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test,