Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ ext {
// enforcedPlatform(:grails-micronaut-bom).
else if (project.name == 'grails-micronaut-bom') {
customBomVersions = [
'groovy.version' : '5.0.5',
'groovy.version' : '5.0.6',
'spock.version' : '2.4-groovy-5.0',
'protobuf.version': '4.30.2',
]
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ gradleChecksumPluginVersion=1.4.0
gradleCycloneDxPluginVersion=3.0.0

# micronaut libraries not in the bom due to the potential for spring mismatches
micronautPlatformVersion=5.0.0-M2
micronautPlatformVersion=5.0.0
micronautRxjava2Version=2.9.0
micronautSerdeJacksonVersion=2.11.0

Expand Down
8 changes: 5 additions & 3 deletions grails-bom/micronaut/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,11 @@ dependencies {
// managed versions transitively and don't need to declare the platform themselves.
// Exclude Groovy since we declare the required version explicitly below via customBomDependencies.
// Exclude Spock since the base BOM manages that version.
// Exclude Jackson 3 (tools.jackson) since spring-boot-dependencies manages that version,
// and Micronaut can lag behind Spring Boot's patch bumps (e.g. SB 4.0.6 ships
// jackson-bom 3.1.2 while micronaut-platform 5.0.0-M2 still pins 3.1.0).
// Exclude Jackson 3 (tools.jackson) since spring-boot-dependencies manages that version
// and the two platforms routinely disagree on the patch (e.g. SB 4.0.6 ships
// jackson-bom 3.1.2 while micronaut-platform 5.0.0 pins 3.1.3). Let Spring Boot
// remain the single source of truth so the dependency-version validator does not
// see drift between probe and project resolution.
api(platform("io.micronaut.platform:micronaut-platform:$micronautPlatformVersion")) {
exclude group: 'org.apache.groovy'
exclude group: 'org.spockframework'
Expand Down
Loading