From 9e61e9bab73abd04cdbbe98e7e44639166b762ae Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Fri, 18 Oct 2024 13:05:47 +0200 Subject: [PATCH] Update flyway-core, ... to 10.20.0 (#5717) * Update flyway-core, ... to 10.20.0 * Add guava as a transitive dep for flyway 10.20.0 --------- Co-authored-by: Chris Stewart --- project/Deps.scala | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/project/Deps.scala b/project/Deps.scala index cf51595df0..5744c0920d 100644 --- a/project/Deps.scala +++ b/project/Deps.scala @@ -33,7 +33,7 @@ object Deps { val typesafeConfigV = "1.4.3" val flywayV = - "10.19.0" // https://flywaydb.org/documentation/learnmore/releaseNotes + "10.20.0" // https://flywaydb.org/documentation/learnmore/releaseNotes val postgresV = "42.7.4" // https://jdbc.postgresql.org/ val akkaActorV = akkaStreamv @@ -130,6 +130,9 @@ object Deps { val gson = "com.google.code.gson" % "gson" % V.gsonV // https://github.com/google/gson + val guava = "com.google.guava" % "guava" % "33.3.1-jre" //https://github.com/google/guava/ + + val jUnixSocket = "com.kohlschutter.junixsocket" % "junixsocket-core" % V.jUnixSocketV @@ -464,6 +467,7 @@ object Deps { // transitive deps needed for jlink Compile.codehaus, Compile.gson, + Compile.guava, Compile.dropwizardMetricsHealthChecks, Compile.dropwizardMetricsJvm, // postgres transitive deps