Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Sep 28, 2024
1 parent 280e414 commit 876d0bb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,19 @@ val scala2_13Versions = 2.to(15)
// .dropWhile(v => isJava21 && v < 11)
.map(v => s"2.13.${v}")
// TODO: We can't have 3.4.0 & 3.4.1 until we solve https://github.com/com-lihaoyi/Ammonite/issues/1395
val scala33Versions = Seq("3.3.4")
val scala34Versions = Seq("3.4.2", "3.4.3")
val scala35Versions = Seq("3.5.0", "3.5.1")

val scala2Versions = scala2_12Versions ++ scala2_13Versions
val scala3Versions = scala34Versions ++ scala35Versions
val scala3Versions = scala33Versions ++ scala34Versions ++ scala35Versions

val binCrossScalaVersions =
Seq(scala2_12Versions.last, scala2_13Versions.last, scala34Versions.last)
Seq(scala2_12Versions.last, scala2_13Versions.last, scala33Versions.last)
val assemblyCrossScalaVersions = Seq(
scala2_12Versions.last,
scala2_13Versions.last,
scala33Versions.last,
scala34Versions.last,
scala35Versions.last,
)
Expand Down Expand Up @@ -142,7 +144,7 @@ object Deps {
val sshdCore = ivy"org.apache.sshd:sshd-core:1.2.0"
val scalametaCommon = ivy"org.scalameta::common:$scalametaVersion"
val typename = ivy"org.tpolecat::typename:1.1.0"
val upickle = ivy"com.lihaoyi::upickle:4.0.1"
val upickle = ivy"com.lihaoyi::upickle:4.0.2"

val utest = ivy"com.lihaoyi::utest:0.8.4"
}
Expand Down

0 comments on commit 876d0bb

Please sign in to comment.