update flyway dependency to 10.19.0 (#5708)

* update flyway dependency to 10.19.0

* Add flyway-database-postgresql dependency

* Add org.flywaydb.core.internal.configuration -> org.apache.commons.text.similarity to jlinkIgnore
This commit is contained in:
Chris Stewart 2024-10-14 11:46:55 -05:00 committed by GitHub
parent f85953e527
commit 1e7e48d546
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -313,6 +313,7 @@ object CommonSettings {
"org.flywaydb.core.internal.scanner.cloud.s3" -> "software.amazon.awssdk.services.s3", "org.flywaydb.core.internal.scanner.cloud.s3" -> "software.amazon.awssdk.services.s3",
"org.flywaydb.core.internal.scanner.cloud.s3" -> "software.amazon.awssdk.services.s3.model", "org.flywaydb.core.internal.scanner.cloud.s3" -> "software.amazon.awssdk.services.s3.model",
"org.flywaydb.core.api.configuration" -> "software.amazon.awssdk.services.s3", "org.flywaydb.core.api.configuration" -> "software.amazon.awssdk.services.s3",
"org.flywaydb.core.internal.configuration" -> "org.apache.commons.text.similarity",
//we don't use oracle database products //we don't use oracle database products
"org.flywaydb.core.internal.database.oracle" -> "oracle.jdbc", "org.flywaydb.core.internal.database.oracle" -> "oracle.jdbc",
//we don't use jboss //we don't use jboss

View file

@ -33,7 +33,7 @@ object Deps {
val typesafeConfigV = "1.4.3" val typesafeConfigV = "1.4.3"
val flywayV = val flywayV =
"9.2.1" // https://flywaydb.org/documentation/learnmore/releaseNotes "10.19.0" // https://flywaydb.org/documentation/learnmore/releaseNotes
val postgresV = "42.7.4" // https://jdbc.postgresql.org/ val postgresV = "42.7.4" // https://jdbc.postgresql.org/
val akkaActorV = akkaStreamv val akkaActorV = akkaStreamv
@ -188,6 +188,7 @@ object Deps {
val sqlite = "org.xerial" % "sqlite-jdbc" % V.sqliteV val sqlite = "org.xerial" % "sqlite-jdbc" % V.sqliteV
val postgres = "org.postgresql" % "postgresql" % V.postgresV val postgres = "org.postgresql" % "postgresql" % V.postgresV
val flyway = "org.flywaydb" % "flyway-core" % V.flywayV val flyway = "org.flywaydb" % "flyway-core" % V.flywayV
val flywayPostgres = "org.flywaydb" % "flyway-database-postgresql" % V.flywayV
val newMicroJson = "com.lihaoyi" %% "ujson" % V.newMicroJsonV val newMicroJson = "com.lihaoyi" %% "ujson" % V.newMicroJsonV
@ -419,6 +420,7 @@ object Deps {
List( List(
Compile.dropwizardMetricsCore, Compile.dropwizardMetricsCore,
Compile.flyway, Compile.flyway,
Compile.flywayPostgres,
Compile.slick, Compile.slick,
Compile.logback, Compile.logback,
Compile.sqlite, Compile.sqlite,