Skip to content

Commit

Permalink
Merge pull request #12618 from mkurz/sbt_1.10.0
Browse files Browse the repository at this point in the history
sbt 1.10.0
  • Loading branch information
mkurz committed May 6, 2024
2 parents ece11dd + b063445 commit 62e45e0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Expand Up @@ -45,7 +45,7 @@ jobs:
cmd: |
if [ "$CACHE_HIT_COURSIER" = "false" ]; then
sbt +update # Runs with adoptium:8 (default)
# sbt --sbt-version 1.9.9 +update # If we run scripted tests with multiple sbt versions, we could init that sbt installs here
# sbt --sbt-version 1.10.0 +update # If we run scripted tests with multiple sbt versions, we could init that sbt installs here
sbt +mimaPreviousClassfiles # Fetches previous artifacts
cd documentation && sbt +update && cd .. # Fetches dependencies of the documentation project
sbt -java-home `cs java-home --jvm adoptium:17` exit # Init sbt with new JVM that will be downloaded
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
scala: 2.13.x, 3.x
add-dimensions: >-
{
"sbt": [ "1.9.9" ],
"sbt": [ "1.10.0" ],
"sbt_steps": [ "*1of3", "*2of3", "*3of3" ]
}
exclude: >-
Expand Down
2 changes: 1 addition & 1 deletion documentation/project/build.properties
@@ -1,4 +1,4 @@
# Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>

# sync with project/build.properties
sbt.version=1.9.9
sbt.version=1.10.0
2 changes: 1 addition & 1 deletion project/PlaySbtBuildBase.scala
Expand Up @@ -13,7 +13,7 @@ object PlaySbtBuildBase extends AutoPlugin {
override def projectSettings = Seq(
scalaVersion := ScalaVersions.scala212,
crossScalaVersions := Seq(ScalaVersions.scala212),
pluginCrossBuild / sbtVersion := SbtVersions.sbt19,
pluginCrossBuild / sbtVersion := SbtVersions.sbt110,
compile / javacOptions ++= Seq("--release", "17"),
doc / javacOptions := Seq("-source", "17")
)
Expand Down
2 changes: 1 addition & 1 deletion project/Versions.scala
Expand Up @@ -9,5 +9,5 @@ object ScalaVersions {
}

object SbtVersions {
val sbt19 = "1.9.9"
val sbt110 = "1.10.0"
}
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1,4 +1,4 @@
# Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>

# sync with documentation/project/build.properties
sbt.version=1.9.9
sbt.version=1.10.0

0 comments on commit 62e45e0

Please sign in to comment.