Skip to content

Commit 6f8272a

Browse files
committed
Upgrade sbt, Scala, Play to latest versions
1 parent 2ca9722 commit 6f8272a

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: playframework/.github/.github/workflows/cmd.yml@v3
5454
with:
5555
java: 17, 11
56-
scala: 2.13.12, 3.3.1
56+
scala: 2.13.13, 3.3.3
5757
cmd: >-
5858
sbt "
5959
+publishLocal;

docs/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ lazy val docs = project
2121
// No resource directories shuts the ebean agent up about java sources in the classes directory
2222
Test / unmanagedResourceDirectories := Nil,
2323
Test / parallelExecution := false,
24-
scalaVersion := "2.13.12",
25-
crossScalaVersions := Seq("2.13.12", "3.3.1"),
24+
scalaVersion := "2.13.13",
25+
crossScalaVersions := Seq("2.13.13", "3.3.3"),
2626
)
2727
.settings(
2828
Test / javafmt / sourceDirectories ++= (Test / unmanagedSourceDirectories).value,

docs/project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
22

3-
sbt.version=1.9.8
3+
sbt.version=1.9.9

docs/project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ lazy val sbtPlayEbean = ProjectRef(Path.fileProperty("user.dir").getParentFile,
66

77
resolvers ++= DefaultOptions.resolvers(snapshot = true)
88

9-
addSbtPlugin("com.typesafe.play" % "play-docs-sbt-plugin" % sys.props.getOrElse("play.version", "2.9.1"))
9+
addSbtPlugin("com.typesafe.play" % "play-docs-sbt-plugin" % sys.props.getOrElse("play.version", "2.9.2"))
1010

1111
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0")
1212

project/Dependencies.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import sbt._
99
object Dependencies {
1010

1111
object ScalaVersions {
12-
val scala212 = "2.12.18"
13-
val scala213 = "2.13.12"
14-
val scala3 = "3.3.1"
12+
val scala212 = "2.12.19"
13+
val scala213 = "2.13.13"
14+
val scala3 = "3.3.3"
1515
}
1616

1717
object Versions {
18-
val play: String = "2.9.1"
18+
val play: String = "2.9.2"
1919
val ebean = "15.0.1"
2020
val typesafeConfig = "1.4.3"
2121
}

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
22

3-
sbt.version=1.9.8
3+
sbt.version=1.9.9

sbt-play-ebean/src/main/scala/play/ebean/sbt/PlayEbean.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ object PlayEbean extends AutoPlugin {
5757
libraryDependencies ++=
5858
Seq(
5959
"com.typesafe.play" %% "play-ebean" % playEbeanVersion.value,
60-
"org.glassfish.jaxb" % "jaxb-runtime" % "4.0.4"
60+
"org.glassfish.jaxb" % "jaxb-runtime" % "4.0.5"
6161
)
6262
)
6363

0 commit comments

Comments
 (0)