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 210c084 commit da80453Copy full SHA for da80453
build.sbt
@@ -1,8 +1,12 @@
1
+lazy val scala2 = "2.13.15"
2
+lazy val scala3 = "3.4.2"
3
+lazy val supportedScalaVersions = List(scala2, scala3)
4
+
5
name := "apibuilder-commons"
6
7
organization := "io.apibuilder"
8
-ThisBuild / scalaVersion := "3.4.2"
9
+ThisBuild / scalaVersion := scala3
10
11
lazy val allScalacOptions = Seq(
12
"-feature",
@@ -18,4 +22,5 @@ lazy val root = project
18
22
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
19
23
),
20
24
scalacOptions ++= allScalacOptions,
25
+ crossScalaVersions := supportedScalaVersions,
21
26
)
0 commit comments