diff --git a/play-java-ebean-example/build.sbt b/play-java-ebean-example/build.sbt index 0adbd53ce..096a0b781 100644 --- a/play-java-ebean-example/build.sbt +++ b/play-java-ebean-example/build.sbt @@ -9,7 +9,7 @@ lazy val root = (project in file(".")) libraryDependencies ++= Seq( guice, jdbc, - "com.h2database" % "h2" % "2.3.230", + "com.h2database" % "h2" % "2.3.232", "org.awaitility" % "awaitility" % "3.1.6" % Test, "org.assertj" % "assertj-core" % "3.12.2" % Test, "org.mockito" % "mockito-core" % "5.13.0" % Test, diff --git a/play-java-grpc-example/build.sbt b/play-java-grpc-example/build.sbt index 3ba44f92c..a2e7fc161 100644 --- a/play-java-grpc-example/build.sbt +++ b/play-java-grpc-example/build.sbt @@ -65,7 +65,7 @@ val CompileDeps = Seq( "org.apache.pekko" %% "pekko-http" % pekkoHttpVersion, "org.apache.pekko" %% "pekko-http-spray-json" % pekkoHttpVersion, // Test Database - "com.h2database" % "h2" % "2.3.230" + "com.h2database" % "h2" % "2.3.232" ) val TestDeps = Seq( diff --git a/play-java-jpa-example/build.sbt b/play-java-jpa-example/build.sbt index 6bc9598be..e208c512a 100644 --- a/play-java-jpa-example/build.sbt +++ b/play-java-jpa-example/build.sbt @@ -9,10 +9,10 @@ lazy val root = (project in file(".")) libraryDependencies ++= Seq( guice, javaJpa, - "com.h2database" % "h2" % "2.3.230", + "com.h2database" % "h2" % "2.3.232", "org.hibernate" % "hibernate-core" % "6.6.0.Final", javaWs % "test", - "org.awaitility" % "awaitility" % "4.2.1" % "test", + "org.awaitility" % "awaitility" % "4.2.2" % "test", "org.assertj" % "assertj-core" % "3.26.3" % "test", "org.mockito" % "mockito-core" % "5.13.0" % "test", ), diff --git a/play-java-rest-api-example/build.sbt b/play-java-rest-api-example/build.sbt index 0e7cc3de6..c6236344f 100644 --- a/play-java-rest-api-example/build.sbt +++ b/play-java-rest-api-example/build.sbt @@ -12,9 +12,9 @@ lazy val root = (project in file(".")) libraryDependencies ++= Seq( guice, javaJpa, - "com.h2database" % "h2" % "2.3.230", + "com.h2database" % "h2" % "2.3.232", "org.hibernate" % "hibernate-core" % "6.6.0.Final", - "io.dropwizard.metrics" % "metrics-core" % "4.2.26", + "io.dropwizard.metrics" % "metrics-core" % "4.2.27", "com.palominolabs.http" % "url-builder" % "1.1.5", "net.jodah" % "failsafe" % "2.4.4", ), diff --git a/play-java-starter-example/build.sbt b/play-java-starter-example/build.sbt index 9873c8f05..48cb80c35 100644 --- a/play-java-starter-example/build.sbt +++ b/play-java-starter-example/build.sbt @@ -9,10 +9,10 @@ lazy val root = (project in file(".")) libraryDependencies ++= Seq( guice, // Test Database - "com.h2database" % "h2" % "2.3.230", + "com.h2database" % "h2" % "2.3.232", // Testing libraries for dealing with CompletionStage... "org.assertj" % "assertj-core" % "3.26.3" % Test, - "org.awaitility" % "awaitility" % "4.2.1" % Test, + "org.awaitility" % "awaitility" % "4.2.2" % Test, ), javacOptions ++= Seq( "-encoding", "UTF-8", diff --git a/play-java-websocket-example/build.sbt b/play-java-websocket-example/build.sbt index d94d0b853..7f4735d65 100644 --- a/play-java-websocket-example/build.sbt +++ b/play-java-websocket-example/build.sbt @@ -13,7 +13,7 @@ lazy val root = (project in file(".")) "org.webjars" % "flot" % "0.8.3-1", "org.webjars" % "bootstrap" % "3.3.7-1", "org.assertj" % "assertj-core" % "3.26.3" % Test, - "org.awaitility" % "awaitility" % "4.2.1" % Test, + "org.awaitility" % "awaitility" % "4.2.2" % Test, ), TwirlKeys.templateImports ++= Seq( "views.html.helper.CSPNonce" diff --git a/play-scala-anorm-example/build.sbt b/play-scala-anorm-example/build.sbt index eb337827a..8403e56ea 100644 --- a/play-scala-anorm-example/build.sbt +++ b/play-scala-anorm-example/build.sbt @@ -10,7 +10,7 @@ lazy val root = (project in file(".")) guice, jdbc, evolutions, - "com.h2database" % "h2" % "2.3.230", + "com.h2database" % "h2" % "2.3.232", "org.playframework.anorm" %% "anorm" % "2.7.0", "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.1" % Test, ), diff --git a/play-scala-chatroom-example/build.sbt b/play-scala-chatroom-example/build.sbt index 380f2aef9..f35bcd8f6 100644 --- a/play-scala-chatroom-example/build.sbt +++ b/play-scala-chatroom-example/build.sbt @@ -15,7 +15,7 @@ lazy val root = (project in file(".")) "org.webjars" % "bootstrap" % "3.3.7-1", "net.logstash.logback" % "logstash-logback-encoder" % "7.3", "org.jsoup" % "jsoup" % "1.18.1", - "ch.qos.logback" % "logback-classic" % "1.5.6", + "ch.qos.logback" % "logback-classic" % "1.5.7", "org.apache.pekko" %% "pekko-slf4j" % pekkoVersion, "org.apache.pekko" %% "pekko-testkit" % pekkoVersion % Test, "org.apache.pekko" %% "pekko-stream-testkit" % pekkoVersion % Test, diff --git a/play-scala-grpc-example/build.sbt b/play-scala-grpc-example/build.sbt index 2e24c7c84..f2d363ebc 100644 --- a/play-scala-grpc-example/build.sbt +++ b/play-scala-grpc-example/build.sbt @@ -58,7 +58,7 @@ val CompileDeps = Seq( "org.apache.pekko" %% "pekko-http" % pekkoHttpVersion, "org.apache.pekko" %% "pekko-http-spray-json" % pekkoHttpVersion, // Test Database - "com.h2database" % "h2" % "2.3.230" + "com.h2database" % "h2" % "2.3.232" ) val playVersion = play.core.PlayVersion.current diff --git a/play-scala-slick-example/build.sbt b/play-scala-slick-example/build.sbt index c0e6bb994..e45b2de3f 100644 --- a/play-scala-slick-example/build.sbt +++ b/play-scala-slick-example/build.sbt @@ -29,7 +29,7 @@ def sampleProject(name: String) = guice, "org.playframework" %% "play-slick" % "6.1.1", "org.playframework" %% "play-slick-evolutions" % "6.1.1", - "com.h2database" % "h2" % "2.3.230", + "com.h2database" % "h2" % "2.3.232", specs2 % Test, ), (Global / concurrentRestrictions) += Tags.limit(Tags.Test, 1) diff --git a/play-scala-starter-example/build.sbt b/play-scala-starter-example/build.sbt index 6ec3d0395..a2f642009 100644 --- a/play-scala-starter-example/build.sbt +++ b/play-scala-starter-example/build.sbt @@ -8,7 +8,7 @@ lazy val root = (project in file(".")) scalaVersion := crossScalaVersions.value.head, libraryDependencies ++= Seq( guice, - "com.h2database" % "h2" % "2.3.230", + "com.h2database" % "h2" % "2.3.232", "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.1" % Test, ), scalacOptions ++= Seq( diff --git a/play-scala-websocket-example/build.sbt b/play-scala-websocket-example/build.sbt index ac837adab..4812826f6 100644 --- a/play-scala-websocket-example/build.sbt +++ b/play-scala-websocket-example/build.sbt @@ -13,7 +13,7 @@ lazy val root = (project in file(".")) "org.webjars" % "flot" % "0.8.3-1", "org.webjars" % "bootstrap" % "3.3.7-1", "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.1" % Test, - "org.awaitility" % "awaitility" % "4.2.1" % Test, + "org.awaitility" % "awaitility" % "4.2.2" % Test, ), TwirlKeys.templateImports ++= Seq( "views.html.helper.CSPNonce"