diff --git a/build.sbt b/build.sbt index 7d3936ea..80066721 100644 --- a/build.sbt +++ b/build.sbt @@ -11,6 +11,7 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor .settings( ScalaModulePlugin.scalaModuleSettings, name := "scala-parser-combinators", + scalaModuleAutomaticModuleName := Some("scala.util.parsing"), scalaModuleMimaPreviousVersion := (CrossVersion.partialVersion(scalaVersion.value) match { // pending resolution of https://github.com/scalacenter/sbt-version-policy/issues/62 case Some((3, _)) => None diff --git a/project/plugins.sbt b/project/plugins.sbt index 04ca35a5..8de53bf9 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ val scalaJSVersion = val scalaNativeVersion = Option(System.getenv("SCALANATIVE_VERSION")).filter(_.nonEmpty).getOrElse("0.4.0") -addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.2.4") +addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.3.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)