diff --git a/play-java-jpa-example/build.sbt b/play-java-jpa-example/build.sbt index e688251f2..01225153d 100644 --- a/play-java-jpa-example/build.sbt +++ b/play-java-jpa-example/build.sbt @@ -12,7 +12,7 @@ lazy val root = (project in file(".")) "org.hibernate" % "hibernate-core" % "6.3.2.Final", javaWs % "test", "org.awaitility" % "awaitility" % "4.2.0" % "test", - "org.assertj" % "assertj-core" % "3.24.2" % "test", + "org.assertj" % "assertj-core" % "3.25.1" % "test", "org.mockito" % "mockito-core" % "5.8.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 2aaf5cffa..b276e49dd 100644 --- a/play-java-starter-example/build.sbt +++ b/play-java-starter-example/build.sbt @@ -10,7 +10,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.24.2" % Test, + "org.assertj" % "assertj-core" % "3.25.1" % 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 bf498b719..d1551ca83 100644 --- a/play-java-websocket-example/build.sbt +++ b/play-java-websocket-example/build.sbt @@ -15,7 +15,7 @@ lazy val root = (project in file(".")) "org.webjars" % "flot" % "0.8.3", // Testing libraries for dealing with CompletionStage... - "org.assertj" % "assertj-core" % "3.24.2" % Test, + "org.assertj" % "assertj-core" % "3.25.1" % Test, "org.awaitility" % "awaitility" % "4.2.0" % Test, ), LessKeys.compress := true,