diff --git a/play-java-jpa-example/build.sbt b/play-java-jpa-example/build.sbt index a3d894bff..bce646b2a 100644 --- a/play-java-jpa-example/build.sbt +++ b/play-java-jpa-example/build.sbt @@ -13,7 +13,7 @@ lazy val root = (project in file(".")) "org.hibernate" % "hibernate-core" % "6.4.4.Final", javaWs % "test", "org.awaitility" % "awaitility" % "4.2.0" % "test", - "org.assertj" % "assertj-core" % "3.25.1" % "test", + "org.assertj" % "assertj-core" % "3.25.3" % "test", "org.mockito" % "mockito-core" % "5.10.0" % "test", ), Test / testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v"), diff --git a/play-java-starter-example/build.sbt b/play-java-starter-example/build.sbt index 7079e2f30..7feb7b022 100644 --- a/play-java-starter-example/build.sbt +++ b/play-java-starter-example/build.sbt @@ -11,7 +11,7 @@ lazy val root = (project in file(".")) // Test Database "com.h2database" % "h2" % "2.2.224", // Testing libraries for dealing with CompletionStage... - "org.assertj" % "assertj-core" % "3.25.1" % Test, + "org.assertj" % "assertj-core" % "3.25.3" % Test, "org.awaitility" % "awaitility" % "4.2.0" % Test, ), javacOptions ++= Seq( diff --git a/play-java-websocket-example/build.sbt b/play-java-websocket-example/build.sbt index b554ea9b5..4e4f8a647 100644 --- a/play-java-websocket-example/build.sbt +++ b/play-java-websocket-example/build.sbt @@ -16,7 +16,7 @@ lazy val root = (project in file(".")) "org.webjars" % "flot" % "0.8.3", // Testing libraries for dealing with CompletionStage... - "org.assertj" % "assertj-core" % "3.25.1" % Test, + "org.assertj" % "assertj-core" % "3.25.3" % Test, "org.awaitility" % "awaitility" % "4.2.0" % Test, ), LessKeys.compress := true,