From fb5eb85eb998d5ba948886bf229ed8ae616b5186 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vi=C3=B1as=20Alcon?= Date: Fri, 10 Nov 2023 12:32:32 +0100 Subject: [PATCH] Update flyway (#50) --- springboot-app/build.gradle.kts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/springboot-app/build.gradle.kts b/springboot-app/build.gradle.kts index b21b0a0..34e36a8 100644 --- a/springboot-app/build.gradle.kts +++ b/springboot-app/build.gradle.kts @@ -20,8 +20,11 @@ dependencies { implementation("org.springframework.cloud:spring-cloud-starter-vault-config") implementation("org.springframework.boot:spring-boot-starter-jdbc") + // TODO not still compatible with current version of SpringBoot + // implementation("org.flywaydb:flyway-core:10.0.0") + // implementation("org.flywaydb:flyway-database-postgresql:10.0.0") + implementation("org.flywaydb:flyway-core:9.22.3") implementation("org.postgresql:postgresql:42.6.0") - implementation("org.flywaydb:flyway-core:9.10.2") implementation("com.fasterxml.jackson.module:jackson-module-kotlin") implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")