Skip to content
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 @@ -169,7 +169,7 @@ jobs:
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-hello-world')}}
with:
java: 11, 21
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: play-java-hello-world-tutorial
add-dimensions: >-
Expand Down
2 changes: 1 addition & 1 deletion play-java-chatroom-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-java-chatroom-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
"org.webjars" %% "webjars-play" % "3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion play-java-chatroom-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-java-compile-di-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
//.enablePlugins(PlayNettyServer).disablePlugins(PlayPekkoHttpServer) // uncomment to use the Netty backend

crossScalaVersions := Seq("2.13.16", "3.3.6")
crossScalaVersions := Seq("2.13.18", "3.3.6")

scalaVersion := crossScalaVersions.value.head

Expand Down
2 changes: 1 addition & 1 deletion play-java-compile-di-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-java-dagger2-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-java-dagger2-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
ws,
Expand Down
2 changes: 1 addition & 1 deletion play-java-dagger2-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-java-ebean-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := "play-java-ebean-example",
version := "1.0.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion play-java-ebean-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")

addSbtPlugin("org.playframework" % "sbt-play-ebean" % "8.3.0")
2 changes: 1 addition & 1 deletion play-java-fileupload-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-java-fileupload-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies += guice,
testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v"),
Expand Down
2 changes: 1 addition & 1 deletion play-java-fileupload-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-java-forms-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
//.enablePlugins(PlayNettyServer).disablePlugins(PlayPekkoHttpServer) // uncomment to use the Netty backend

crossScalaVersions := Seq("2.13.16", "3.3.6")
crossScalaVersions := Seq("2.13.18", "3.3.6")

scalaVersion := crossScalaVersions.value.head

Expand Down
2 changes: 1 addition & 1 deletion play-java-forms-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
4 changes: 2 additions & 2 deletions play-java-grpc-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ lazy val `play-java-grpc-example` = (project in file("."))
libraryDependencies ++= CompileDeps ++ TestDeps
)

scalaVersion := "2.13.16"
crossScalaVersions := Seq("2.13.16", "3.3.6")
scalaVersion := "2.13.18"
crossScalaVersions := Seq("2.13.18", "3.3.6")
scalacOptions ++= List("-encoding", "utf8", "-deprecation", "-feature", "-unchecked")
javacOptions ++= List("-Xlint:unchecked", "-Xlint:deprecation")
// Needed for ssl-config to create self signed certificated under Java 17
Expand Down
2 changes: 1 addition & 1 deletion play-java-grpc-example/docs/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
paradoxTheme := Some(builtinParadoxTheme("generic"))

scalaVersion := "2.13.16"
scalaVersion := "2.13.18"

2 changes: 1 addition & 1 deletion play-java-grpc-example/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ val playGrpcV = "0.12.2"
buildInfoKeys := Seq[BuildInfoKey]("playGrpcVersion" -> playGrpcV)
buildInfoPackage := "play.java.grpc.sample"

addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")

addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.10.7")

Expand Down
2 changes: 1 addition & 1 deletion play-java-hello-world-tutorial/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
//.enablePlugins(PlayNettyServer).disablePlugins(PlayPekkoHttpServer) // uncomment to use the Netty backend

crossScalaVersions := Seq("2.13.16", "3.3.6")
crossScalaVersions := Seq("2.13.18", "3.3.6")

scalaVersion := crossScalaVersions.value.head

Expand Down
4 changes: 2 additions & 2 deletions play-java-hello-world-tutorial/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
twirl = "2.0.9"
play = "3.0.9"
play = "3.0.10"
junit = "4.13.2"

[libraries]
Expand All @@ -9,4 +9,4 @@ play-bom = { group = "org.playframework", name = "play-bom_3", version.ref = "pl

[plugins]
twirl = { id = "org.playframework.twirl", version.ref = "twirl" }
play = { id = "org.playframework.play", version = "3.1.0-M2-573139bb-SNAPSHOT" }
play = { id = "org.playframework.play", version = "3.1.0-M4" }
2 changes: 1 addition & 1 deletion play-java-hello-world-tutorial/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-java-jpa-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-java-jpa-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion play-java-jpa-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")

// Web plugins
addSbtPlugin("com.github.sbt" % "sbt-coffeescript" % "2.0.1")
Expand Down
2 changes: 1 addition & 1 deletion play-java-pekko-cluster-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
//.enablePlugins(PlayNettyServer).disablePlugins(PlayPekkoHttpServer) // uncomment to use the Netty backend

crossScalaVersions := Seq("2.13.16", "3.3.6")
crossScalaVersions := Seq("2.13.18", "3.3.6")

scalaVersion := crossScalaVersions.value.head

Expand Down
2 changes: 1 addition & 1 deletion play-java-pekko-cluster-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-java-rest-api-example/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lazy val scala213 = "2.13.16"
lazy val scala213 = "2.13.18"
lazy val scala3 = "3.3.4"

lazy val root = (project in file("."))
Expand Down
2 changes: 1 addition & 1 deletion play-java-rest-api-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")

// Load testing tool:
// https://gatling.io/docs/gatling/reference/current/extensions/sbt_plugin/
Expand Down
2 changes: 1 addition & 1 deletion play-java-starter-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-java-starter-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion play-java-starter-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-java-streaming-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "play-java-streaming-example"

version := "1.0-SNAPSHOT"

crossScalaVersions := Seq("2.13.16", "3.3.6")
crossScalaVersions := Seq("2.13.18", "3.3.6")
scalaVersion := crossScalaVersions.value.head

lazy val root = (project in file(".")).enablePlugins(PlayJava)
Expand Down
2 changes: 1 addition & 1 deletion play-java-streaming-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Use the Play sbt plugin for Play projects
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-java-websocket-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := "play-java-websocket-example",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion play-java-websocket-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")

addSbtPlugin("com.github.sbt" % "sbt-less" % "2.0.1")

Expand Down
2 changes: 1 addition & 1 deletion play-scala-anorm-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := "play-scala-anorm-example",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion play-scala-anorm-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-scala-chatroom-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-scala-chatroom-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion play-scala-chatroom-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-scala-compile-di-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-scala-compile-di-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.2",
scalacOptions ++= List(
Expand Down
2 changes: 1 addition & 1 deletion play-scala-compile-di-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-scala-fileupload-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-scala-fileupload-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
ws,
Expand Down
2 changes: 1 addition & 1 deletion play-scala-fileupload-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resolvers += Resolver.jcenterRepo

// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-scala-forms-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-scala-forms-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion play-scala-forms-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
4 changes: 2 additions & 2 deletions play-scala-grpc-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ val TestDeps = Seq(
"org.scalatestplus.play" %% "scalatestplus-play" % "7.0.2" % Test,
)

scalaVersion := "2.13.16"
crossScalaVersions := Seq("2.13.16", "3.3.6")
scalaVersion := "2.13.18"
crossScalaVersions := Seq("2.13.18", "3.3.6")
scalacOptions ++= List("-encoding", "utf8", "-deprecation", "-feature", "-unchecked")
// Needed for ssl-config to create self signed certificated under Java 17
Test / javaOptions ++= List("--add-exports=java.base/sun.security.x509=ALL-UNNAMED")
Expand Down
2 changes: 1 addition & 1 deletion play-scala-grpc-example/docs/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
paradoxTheme := Some(builtinParadoxTheme("generic"))

scalaVersion := "2.13.16"
scalaVersion := "2.13.18"

2 changes: 1 addition & 1 deletion play-scala-grpc-example/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildInfoKeys := Seq[BuildInfoKey]("playGrpcVersion" -> playGrpcV)
buildInfoPackage := "play.scala.grpc.sample"


addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")

addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.10.7")

Expand Down
2 changes: 1 addition & 1 deletion play-scala-hello-world-tutorial/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lazy val root = (project in file("."))
name := """play-scala-hello-world-tutorial""",
organization := "com.example",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion play-scala-hello-world-tutorial/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-scala-isolated-slick-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ val FlywayVersion = "11.10.1"
"com.google.inject" % "guice" % "6.0.0"
)

(ThisBuild / crossScalaVersions) := Seq("2.13.16", "3.3.6")
(ThisBuild / crossScalaVersions) := Seq("2.13.18", "3.3.6")
(ThisBuild / scalaVersion) := crossScalaVersions.value.head
(ThisBuild / scalacOptions) ++= Seq(
"-encoding", "UTF-8", // yes, this is 2 args
Expand Down
2 changes: 1 addition & 1 deletion play-scala-isolated-slick-example/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ addSbtPlugin("com.github.sbt" % "flyway-sbt" % "10.21.0")
addSbtPlugin("com.github.tototoshi" % "sbt-slick-codegen" % "2.2.0")

// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-scala-log4j2-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-scala-log4j2-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion play-scala-log4j2-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-scala-macwire-di-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-scala-macwire-di-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
"com.softwaremill.macwire" %% "macros" % "2.6.6" % "provided",
Expand Down
2 changes: 1 addition & 1 deletion play-scala-macwire-di-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-scala-rest-api-example/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sbt.Keys._
import play.sbt.PlaySettings

lazy val scala213 = "2.13.16"
lazy val scala213 = "2.13.18"
lazy val scala3 = "3.3.4"

lazy val root = (project in file("."))
Expand Down
2 changes: 1 addition & 1 deletion play-scala-rest-api-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")

// sbt-paradox, used for documentation
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.10.7")
Expand Down
2 changes: 1 addition & 1 deletion play-scala-secure-session-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lazy val root = (project in file("."))
.settings(
name := """play-scala-secure-session-example""",
version := "1.0-SNAPSHOT",
crossScalaVersions := Seq("2.13.16", "3.3.6"),
crossScalaVersions := Seq("2.13.18", "3.3.6"),
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
ws,
Expand Down
2 changes: 1 addition & 1 deletion play-scala-secure-session-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The Play plugin
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.10")
2 changes: 1 addition & 1 deletion play-scala-slick-example/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lazy val scala213 = "2.13.16"
lazy val scala213 = "2.13.18"
lazy val scala3 = "3.3.4"

lazy val root = (project in file("."))
Expand Down
Loading
Loading