Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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")
Expand Down Expand Up @@ -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)