Skip to content

Commit

Permalink
Bump to Scala 3 LTS, fix multi-platform tests
Browse files Browse the repository at this point in the history
  • Loading branch information
keynmol committed Nov 11, 2024
1 parent fbe56b8 commit 4a05d89
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
17 changes: 8 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
val scala211 = "2.11.12"
val scala212 = "2.12.19"
val scala213 = "2.13.14"
val scala3 = "3.1.2"
val scalaFull = Seq(scala213, scala212, /*scala211,*/ scala3)
val scala212 = "2.12.20"
val scala213 = "2.13.15"
val scala3 = "3.3.4"
val scalaFull = Seq(scala213, scala212, scala3)
val verify = "1.0.0"

ThisBuild / scalaVersion := scala213
Global / semanticdbEnabled := true
Global / semanticdbVersion := "4.9.3"

lazy val verify = "com.eed3si9n.verify" %% "verify" % "1.0.0"
Global / semanticdbVersion := "4.11.0"

lazy val root = (project in file("."))
.aggregate(expecty.projectRefs: _*)
Expand All @@ -32,7 +31,7 @@ lazy val expecty = (projectMatrix in file("."))
case Some((2, _)) => Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value)
case _ => Nil
}),
libraryDependencies += verify % Test,
libraryDependencies += "com.eed3si9n.verify" %%% "verify" % verify % Test,
testFrameworks += new TestFramework("verify.runner.Framework"),
)
.jvmPlatform(
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val scalaJSVersion =
Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.16.0")
Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.17.0")
val scalaNativeVersion =
Option(System.getenv("SCALANATIVE_VERSION")).getOrElse("0.5.4")

Expand Down

0 comments on commit 4a05d89

Please sign in to comment.