Skip to content

Commit

Permalink
Update scala3-library to 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Mar 2, 2024
1 parent 8026fa6 commit 74bbe16
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Common._

val scala2Version = "2.13.10"
val scala3Version = "3.2.2"
val scala3Version = "3.3.3"

lazy val root =
project
Expand All @@ -16,18 +16,18 @@ lazy val dhalljMagnolia = (projectMatrix in file("modules/dhallj-magnolia"))
.settings(commonSettings("dhallj-magnolia"))
.settings(
libraryDependencies ++= Seq(
"org.dhallj" %% "dhall-scala-codec" % "0.10.0-M2",
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.dhallj" %% "dhall-javagen" % "0.10.0-M2" % Test
"org.dhallj" %% "dhall-scala-codec" % "0.10.0-M2",
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.dhallj" %% "dhall-javagen" % "0.10.0-M2" % Test
),
libraryDependencies ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((3, _)) =>
Seq("com.softwaremill.magnolia1_3" %% "magnolia" % "1.3.0")
case _ =>
Seq(
"com.softwaremill.magnolia1_2" %% "magnolia" % "1.1.3",
"org.scala-lang" % "scala-reflect" % scala2Version % Provided,
"com.softwaremill.magnolia1_2" %% "magnolia" % "1.1.3",
"org.scala-lang" % "scala-reflect" % scala2Version % Provided,
)
}
},
Expand Down

0 comments on commit 74bbe16

Please sign in to comment.