Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ext {
'jna.version' : '5.18.1',
'jquery.version' : '3.7.1',
'objenesis.version' : '3.4',
'spring-boot.version' : '4.0.5',
'spring-boot.version' : '4.0.6',
]

// Note: the name of the dependency must be the prefix of the property name so properties in the pom are resolved correctly
Expand Down Expand Up @@ -86,7 +86,7 @@ ext {
'jakarta-validation.version': '3.1.1',
'jquery.version' : '3.7.1',
'junit.version' : '6.0.3',
'mongodb.version' : '5.6.4',
'mongodb.version' : '5.6.5',
'rxjava.version' : '1.3.8',
'rxjava2.version' : '2.2.21',
'rxjava3.version' : '3.1.12',
Expand Down
4 changes: 4 additions & 0 deletions grails-bom/micronaut/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,13 @@ 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).
api(platform("io.micronaut.platform:micronaut-platform:$micronautPlatformVersion")) {
exclude group: 'org.apache.groovy'
exclude group: 'org.spockframework'
exclude group: 'tools.jackson'
}

constraints {
Expand Down
Loading