Skip to content

Commit

Permalink
Update Scala 3 to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plokhotnyuk committed May 20, 2021
1 parent 3957b8b commit 32cc9d7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -112,21 +112,21 @@ lazy val `rtree2d-core` = crossProject(JVMPlatform, JSPlatform, NativePlatform)
"org.scalatestplus" %%% "scalacheck-1-15" % "3.2.4.0-M1" % Test
)
case _=> Seq(
"org.scalatest" %%% "scalatest" % "3.2.8" % Test,
"org.scalatestplus" %%% "scalacheck-1-15" % "3.2.8.0" % Test
"org.scalatest" %%% "scalatest" % "3.2.9" % Test,
"org.scalatestplus" %%% "scalacheck-1-15" % "3.2.9.0" % Test
)
})
)
.nativeSettings(
crossScalaVersions := Seq("2.13.6", scalaVersion.value),
)
.jsSettings(
crossScalaVersions := Seq("3.0.0-RC3", "2.13.6", scalaVersion.value, "2.11.12"),
crossScalaVersions := Seq("3.0.0", "2.13.6", scalaVersion.value, "2.11.12"),
scalaJSLinkerConfig ~= (_.withModuleKind(ModuleKind.CommonJSModule).withESFeatures(_.withUseECMAScript2015(false))),
coverageEnabled := false // FIXME: No support for Scala.js 1.0 yet, see https://github.com/scoverage/scalac-scoverage-plugin/pull/287
)
.jvmSettings(
crossScalaVersions := Seq("3.0.0-RC3", "2.13.6", scalaVersion.value, "2.11.12")
crossScalaVersions := Seq("3.0.0", "2.13.6", scalaVersion.value, "2.11.12")
)

lazy val `rtree2d-coreJVM` = `rtree2d-core`.jvm
Expand All @@ -146,7 +146,7 @@ lazy val `rtree2d-benchmark` = project
"org.locationtech.jts" % "jts-core" % "1.18.1",
"com.github.davidmoten" % "rtree2" % "0.9-RC1",
"org.spire-math" %% "archery" % "0.6.0",
"org.scalatest" %% "scalatest" % "3.2.8" % Test
"org.scalatest" %% "scalatest" % "3.2.9" % Test
),
charts := Def.inputTaskDyn {
val jmhParams = Def.spaceDelimited().parsed
Expand Down

0 comments on commit 32cc9d7

Please sign in to comment.