Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions project/deps/package.mill
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@ object Cli {
}

object Scala {
def scala212 = "2.12.21"
def scala213 = "2.13.18"
def scala3LtsPrefix = "3.3" // used for the LTS version tags
def scala3Lts = s"$scala3LtsPrefix.7" // the LTS version currently used in the build
def runnerScala3 = scala3Lts
def scala3NextPrefix = "3.8"
def scala3Next = s"$scala3NextPrefix.4" // the newest/next version of Scala
def scala3NextAnnounced = s"$scala3NextPrefix.4" // the newest/next version of Scala that's been announced
def scala3NextRc = "3.9.0-RC1" // the latest RC version of Scala Next
def scala212 = "2.12.21"
def scala213 = "2.13.18"
def scala3LtsPrefix = "3.3" // used for the LTS version tags
def scala3Lts = s"$scala3LtsPrefix.7" // the LTS version currently used in the build
def runnerScala3 = scala3Lts
def scala3NextPrefix = "3.8"
def scala3Next = s"$scala3NextPrefix.4" // the newest/next version of Scala
def scala3NextAnnounced =
s"$scala3NextPrefix.4" // the newest/next version of Scala that's been announced
def scala3NextRc = "3.9.0-RC1" // the latest RC version of Scala Next
def scala3NextRcAnnounced = "3.8.4-RC3" // the latest announced RC version of Scala Next

// The Scala version used to build the CLI itself.
Expand Down Expand Up @@ -114,7 +115,7 @@ object TestDeps {

object Deps {
object Versions {
def argonautShapeless = "1.3.1"
def argonautShapeless = "1.3.1"
// jni-utils version may need to be sync-ed when bumping the coursier version
def coursierDefault = "2.1.25-M25"
def coursier = coursierDefault
Expand Down Expand Up @@ -150,7 +151,7 @@ object Deps {
def scalafix = "0.14.6"
}

def argonautShapeless =
def argonautShapeless =
mvn"com.github.alexarchambault:argonaut-shapeless_6.3_2.13:${Versions.argonautShapeless}"
def asm = mvn"org.ow2.asm:asm:9.10.1"
// Force using of 2.13 - is there a better way?
Expand Down Expand Up @@ -256,7 +257,7 @@ object Deps {
.exclude(("org.scala-lang.modules", "scala-collection-compat_2.13"))
.exclude(("com.lihaoyi", "os-lib_3"))
.exclude(("com.lihaoyi", "os-lib_2.13"))
def slf4jNop = mvn"org.slf4j:slf4j-nop:2.0.17"
def slf4jNop = mvn"org.slf4j:slf4j-nop:2.0.18"
def sttp = mvn"com.softwaremill.sttp.client3::core:3.11.0"
def svm = mvn"org.graalvm.nativeimage:svm:$graalSvmVersion"
def swoval = mvn"com.swoval:file-tree-views:2.1.12"
Expand Down
Loading