We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e239cb commit 51e65f4Copy full SHA for 51e65f4
project/Common.scala
@@ -37,7 +37,7 @@ object Common extends AutoPlugin {
37
val scala211 = "2.11.12"
38
val scala212 = "2.12.18"
39
val scala213 = "2.13.8"
40
- val scala31 = "3.2.2" // CI uses 3.1.2-RC1-bin-20220113-8d28d94-NIGHTLY"
+ val scala3 = "3.2.2" // CI uses 3.1.2-RC1-bin-20220113-8d28d94-NIGHTLY"
41
42
def majorVersion = {
43
val Major = """([0-9]+)\.([0-9]+)\..*""".r
@@ -58,7 +58,7 @@ object Common extends AutoPlugin {
58
)
59
60
lazy val scalaVersions: Seq[String] = {
61
- if (actorModule == "akka") Seq(scala211, scala212, scala213, scala31)
+ if (actorModule == "akka") Seq(scala211, scala212, scala213, scala3)
62
else Seq(scala212, scala213)
63
}
64
0 commit comments