Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala-library to 2.12.18 #419

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
)
)
Loading