Skip to content

Commit

Permalink
allow Scala nightlies via system properties
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaglin committed Sep 10, 2023
1 parent 4b8436b commit acbee63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import scala.util.Try
/* scalafmt: { maxColumn = 120 }*/

object Dependencies {
val scala212 = "2.12.18"
val scala213 = "2.13.12"
val scala3 = "3.3.1"
val scala212 = sys.props.getOrElse("scala212.nightly", "2.12.18")
val scala213 = sys.props.getOrElse("scala213.nightly", "2.13.12")
val scala3 = sys.props.getOrElse("scala3.nightly", "3.3.1")

val buildScalaVersions = Seq(scala212, scala213, scala3)
val buildWithTargetVersions: Seq[(String, String)] =
Expand Down

0 comments on commit acbee63

Please sign in to comment.