From e3fff7428a2e6f9677f43907002a5f388da9567f Mon Sep 17 00:00:00 2001 From: Pask Date: Thu, 13 Jan 2022 21:27:06 +0100 Subject: [PATCH 1/2] Attempt to implment scala3 support for scala-native in core --- build.sbt | 2 +- project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index a368d7eb..f5076698 100644 --- a/build.sbt +++ b/build.sbt @@ -94,6 +94,6 @@ lazy val core = (projectMatrix in file("core")) ) ) .nativePlatform( - scalaVersions = scala2, + scalaVersions = scala2 ++ scala3, settings = commonNativeSettings ) diff --git a/project/plugins.sbt b/project/plugins.sbt index efd4e0e4..82a9ab18 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ libraryDependencies += "org.scala-js" %% "scalajs-env-selenium" % "1.1.1" addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.2") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.3-RC1") addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.9.0") val sbtSoftwareMillVersion = "2.0.9" From 42290c5c97e2997378aa7b7737ad0520b2fb192b Mon Sep 17 00:00:00 2001 From: Pask Date: Sun, 30 Jan 2022 18:03:44 +0100 Subject: [PATCH 2/2] Updated scalatest dependency --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index f5076698..d7ea17d7 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ val scala2_13 = "2.13.7" val scala2 = List(scala2_11, scala2_12, scala2_13) val scala3 = List("3.1.0") -val scalaTestVersion = "3.2.10" +val scalaTestVersion = "3.2.11" excludeLintKeys in Global ++= Set(ideSkipProject)