Skip to content

Commit

Permalink
Merge pull request #12809 from playframework/update/2.9.x/h2-2.3.230
Browse files Browse the repository at this point in the history
[2.9.x] h2 2.3.230 (was 2.2.224)
  • Loading branch information
mkurz authored Jul 23, 2024
2 parents bb19213 + ca820a6 commit ab4b507
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lazy val root = (project in file("."))
guice,
jdbc,
evolutions,
"com.h2database" % "h2" % "2.2.224",
"com.h2database" % "h2" % "2.3.230",
)
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lazy val root = (project in file("."))
updateOptions := updateOptions.value.withLatestSnapshots(false),
update / evictionWarningOptions ~= (_.withWarnTransitiveEvictions(false).withWarnDirectEvictions(false)),
PlayKeys.playInteractionMode := play.sbt.StaticPlayNonBlockingInteractionMode,
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.2.224"),
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.3.230"),
InputKey[Unit]("applyEvolutions") := {
val args = Def.spaceDelimited("<path>").parsed
val path :: Nil = args
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lazy val root = (project in file("."))
updateOptions := updateOptions.value.withLatestSnapshots(false),
update / evictionWarningOptions ~= (_.withWarnTransitiveEvictions(false).withWarnDirectEvictions(false)),
PlayKeys.playInteractionMode := play.sbt.StaticPlayNonBlockingInteractionMode,
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.2.224"),
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.3.230"),
InputKey[Unit]("applyEvolutions") := {
val args = Def.spaceDelimited("<path>").parsed
val path :: Nil = args
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lazy val root = (project in file("."))
updateOptions := updateOptions.value.withLatestSnapshots(false),
update / evictionWarningOptions ~= (_.withWarnTransitiveEvictions(false).withWarnDirectEvictions(false)),
PlayKeys.playInteractionMode := play.sbt.StaticPlayNonBlockingInteractionMode,
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.2.224"),
libraryDependencies ++= Seq(guice, javaJdbc, evolutions, "com.h2database" % "h2" % "2.3.230"),
InputKey[Unit]("applyEvolutions") := {
val args = Def.spaceDelimited("<path>").parsed
val path :: Nil = args
Expand Down
2 changes: 1 addition & 1 deletion documentation/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ lazy val main = Project("Play-Documentation", file("."))
version := PlayVersion.current,
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.3" % Test,
"com.h2database" % "h2" % "2.2.224" % Test,
"com.h2database" % "h2" % "2.3.230" % Test,
"org.mockito" % "mockito-core" % "5.6.0" % Test,
// https://github.com/logstash/logstash-logback-encoder/tree/logstash-logback-encoder-4.9#including
"net.logstash.logback" % "logstash-logback-encoder" % "7.3" % Test
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ object Dependencies {

val javaxInject = "javax.inject" % "javax.inject" % "1"

val h2database = "com.h2database" % "h2" % "2.2.224"
val h2database = "com.h2database" % "h2" % "2.3.230"

val derbyVersion = "10.15.2.0"
val derbyDatabase = Seq(
Expand Down

0 comments on commit ab4b507

Please sign in to comment.