Skip to content

Commit

Permalink
Merge pull request #389 from bjaglin/scala21219
Browse files Browse the repository at this point in the history
build with and test against Scala 2.12.19
  • Loading branch information
bjaglin authored Feb 22, 2024
2 parents 41eb089 + e92dbd8 commit a7ec035
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ libraryDependencies ++= List(
"org.scalatest" %% "scalatest" % "3.2.18" % Test
)

scalaVersion := "2.12.18"
scalaVersion := "2.12.19"

// keep this as low as possible to avoid running into binary incompatibility such as https://github.com/sbt/sbt/issues/5049
pluginCrossBuild / sbtVersion := "1.3.1"
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-1.5/scalafixEnable/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lazy val scala211 = project
lazy val scala212 = project
.in(file("scala212"))
.settings(
scalaVersion := "2.12.18" // supported by semanticdb-scalac
scalaVersion := "2.12.19" // supported by semanticdb-scalac
)

lazy val scala3 = project
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-scalafix/basic/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
inThisBuild(
List(
scalaVersion := "2.12.18",
scalaVersion := "2.12.19",
libraryDependencies ++= List(
"org.scalameta" %% "testkit" % "4.3.10" % Test,
"org.scalameta" %% "munit" % "0.7.9" % Test,
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-scalafix/inconfig/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
inThisBuild(
List(
scalaVersion := "2.12.18",
scalaVersion := "2.12.19",
libraryDependencies ++= List(
"org.scalameta" %% "testkit" % "4.3.10" % Test,
"org.scalameta" %% "munit" % "0.7.9" % Test,
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-scalafix/root-validation/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
inThisBuild(
List(
scalaVersion := "2.12.18"
scalaVersion := "2.12.19"
)
)

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-scalafix/semanticdb-enabled/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
inThisBuild(
List(
scalaVersion := "2.12.18",
scalaVersion := "2.12.19",
semanticdbEnabled := true,
semanticdbVersion := scalafixSemanticdb.revision
)
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/skip-java17/scalafixResolvers/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
scalaVersion := "2.12.18"
scalaVersion := "2.12.19"

TaskKey[Unit]("check") := {
val expectedRepositories: Seq[String] = Seq(
Expand Down

0 comments on commit a7ec035

Please sign in to comment.