diff --git a/build.gradle b/build.gradle index 2949744af..8dcc9d575 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { asciiDoctorConvertPluginVersion = '4.0.5' bcpkixFipsVersion = '2.1.10' bcFipsVersion = '2.1.2' - flywayVersion = '12.0.3' + flywayVersion = '12.1.0' guavaVersion = '33.5.0-jre' kotlinVersion = '2.3.10' ktlintVersion = '1.5.0' @@ -15,6 +15,7 @@ buildscript { grpcVersion = '1.79.0' protoBufJavaVersion = '4.34.0' protoCVersion = '4.34.0' + jacksonBomVersion = '2.21.1' // Overriding spring-boot's dependency because flayway 12.1.0 requires later jackson-bom version than spring-boot 3.5.11's } repositories { def artifactRepoUrl = System.getenv("ARTIFACTORY_URL") @@ -74,7 +75,8 @@ subprojects { } } -// Override spring boot's kotllin version dependency +// Override spring boot's version dependencies ext['kotlin.version'] = '${kotlinVersion}' +ext['jackson-bom.version'] = '${jacksonBomVersion}' assert JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_21)