We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eb2778 commit 790789aCopy full SHA for 790789a
build.sbt
@@ -50,7 +50,13 @@ val scala3 = "3.3.3"
50
val javaTime = "1.3.0"
51
val scCompat = "2.12.0"
52
53
-val versionsBase = Seq(scala212, scala213)
+// We use the 2.12 and 2.13 version that the scalafix library uses
54
+// and when the scalafix version gets updated the system will build
55
+// using those Scala version. The Scala versions above are versions
56
+// that get updated via Scala Steward and will match the scalafix
57
+// versions when scalafix version is updated and in sync with the
58
+// latest Scala versions.
59
+val versionsBase = _root_.scalafix.sbt.BuildInfo.supportedScalaVersions
60
val versions = versionsBase :+ scala3
61
62
ThisBuild / scalaVersion := scala213
0 commit comments