mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-03 02:39:18 +01:00
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:
parent
f85953e527
commit
1e7e48d546
2 changed files with 4 additions and 1 deletions
|
@ -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.model",
|
||||
"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
|
||||
"org.flywaydb.core.internal.database.oracle" -> "oracle.jdbc",
|
||||
//we don't use jboss
|
||||
|
|
|
@ -33,7 +33,7 @@ object Deps {
|
|||
val typesafeConfigV = "1.4.3"
|
||||
|
||||
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 akkaActorV = akkaStreamv
|
||||
|
||||
|
@ -188,6 +188,7 @@ object Deps {
|
|||
val sqlite = "org.xerial" % "sqlite-jdbc" % V.sqliteV
|
||||
val postgres = "org.postgresql" % "postgresql" % V.postgresV
|
||||
val flyway = "org.flywaydb" % "flyway-core" % V.flywayV
|
||||
val flywayPostgres = "org.flywaydb" % "flyway-database-postgresql" % V.flywayV
|
||||
|
||||
val newMicroJson = "com.lihaoyi" %% "ujson" % V.newMicroJsonV
|
||||
|
||||
|
@ -419,6 +420,7 @@ object Deps {
|
|||
List(
|
||||
Compile.dropwizardMetricsCore,
|
||||
Compile.flyway,
|
||||
Compile.flywayPostgres,
|
||||
Compile.slick,
|
||||
Compile.logback,
|
||||
Compile.sqlite,
|
||||
|
|
Loading…
Add table
Reference in a new issue