Skip to content

Commit

Permalink
Merge pull request #94 from KacperFKorban/scala-native
Browse files Browse the repository at this point in the history
Enable Scala 3 + Scala Native
  • Loading branch information
adamw authored May 5, 2022
2 parents 939e80a + 1cfd42f commit 726d903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ lazy val quicklens = (projectMatrix in file("quicklens"))
libraryDependencies ++= compilerLibrary(scalaVersion.value),
versionSpecificScalaSources,
libraryDependencies ++= Seq("flatspec", "shouldmatchers").map(m =>
"org.scalatest" %%% s"scalatest-$m" % "3.2.11" % Test
"org.scalatest" %%% s"scalatest-$m" % "3.2.12" % Test
)
)
.jvmPlatform(
Expand All @@ -77,7 +77,7 @@ lazy val quicklens = (projectMatrix in file("quicklens"))
scalaVersions = List(scala212, scala213, scala3)
)
.nativePlatform(
scalaVersions = List(scala211, scala212, scala213),
scalaVersions = List(scala211, scala212, scala213, scala3),
settings = Seq(
nativeLinkStubs := true
)
Expand Down

0 comments on commit 726d903

Please sign in to comment.