Create spring-boot-flyway module

This commit is contained in:
Stéphane Nicoll
2025-03-21 08:49:18 +01:00
committed by Phillip Webb
parent 232ed597a8
commit aa11d6d0fb
66 changed files with 306 additions and 300 deletions

View File

@@ -16,8 +16,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")

View File

@@ -9,8 +9,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"))
}