Skip to content

Commit

Permalink
Merge pull request #739 from scala-steward/update/patches
Browse files Browse the repository at this point in the history
[3.0.x] Patch updates
  • Loading branch information
mkurz authored Sep 4, 2024
2 parents c788482 + b6b3017 commit 3e81fd0
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion play-java-ebean-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion play-java-grpc-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions play-java-jpa-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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",
),
Expand Down
4 changes: 2 additions & 2 deletions play-java-rest-api-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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",
),
Expand Down
4 changes: 2 additions & 2 deletions play-java-starter-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion play-java-websocket-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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 @@ -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,
),
Expand Down
2 changes: 1 addition & 1 deletion play-scala-chatroom-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion play-scala-grpc-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion play-scala-slick-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion play-scala-starter-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion play-scala-websocket-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3e81fd0

Please sign in to comment.