Create spring-boot-flyway module

See gh-46086
This commit is contained in:
Stéphane Nicoll
2025-07-01 11:54:34 +01:00
committed by Andy Wilkinson
parent 3a90b32ac0
commit 80933d86b4
66 changed files with 297 additions and 274 deletions
@@ -32,8 +32,7 @@ dependencies {
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-r2dbc"))
runtimeOnly(project(":spring-boot-project:spring-boot-jdbc"))
runtimeOnly("org.flywaydb:flyway-core")
runtimeOnly(project(":spring-boot-project:spring-boot-flyway"))
runtimeOnly("org.flywaydb:flyway-database-postgresql")
runtimeOnly("org.postgresql:postgresql")
runtimeOnly("org.postgresql:r2dbc-postgresql")
@@ -25,8 +25,8 @@ dependencies {
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa"))
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
runtimeOnly(project(":spring-boot-project:spring-boot-flyway"))
runtimeOnly("com.h2database:h2")
runtimeOnly("org.flywaydb:flyway-core")
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
}