Skip to content

Commit

Permalink
Merge pull request #419 from scala-steward/update/scala-library-2.12.18
Browse files Browse the repository at this point in the history
Update scala-library to 2.12.18
  • Loading branch information
mkurz committed Dec 11, 2023
2 parents 36c1b04 + af6e088 commit 9c5b909
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: playframework/.github/.github/workflows/cmd.yml@v3
with:
java: 11, 8
scala: 2.12.17
scala: 2.12.18
cmd: |
sbt ++$MATRIX_SCALA test scripted
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lazy val root = (project in file("."))
sonatypeProfileName := "com.github.sbt.sbt-eclipse", // See https://issues.sonatype.org/browse/OSSRH-77819#comment-1203625
name := "sbt-eclipse",
scalacOptions ++= Seq("-unchecked", "-deprecation", "-target:jvm-1.8"),
scalaVersion := "2.12.17",
scalaVersion := "2.12.18",
// Customise sbt-dynver's behaviour to make it work with tags which aren't v-prefixed
ThisBuild / dynverVTagPrefix := false,
// Sanity-check: assert that version comes from a tag (e.g. not a too-shallow clone)
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbteclipse/02-contents/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lazy val root =
(Compile / unmanagedSourceDirectories) += { baseDirectory(new File(_, "src/main/scala")).value },
(Test / unmanagedSourceDirectories) += { baseDirectory(new File(_, "src/test/scala")).value },
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % "2.12.17",
"org.scala-lang" % "scala-compiler" % "2.12.18",
"biz.aQute.bnd" % "biz.aQute.bndlib" % "3.4.0"
),
retrieveManaged := true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ lazy val subb =
Project("subb", new File("subb")).
settings(
Defaults.coreDefaultSettings ++ Seq(
scalaVersion := "2.12.17"
scalaVersion := "2.12.18"
)
)

0 comments on commit 9c5b909

Please sign in to comment.