Upgrade micronaut to v5#694
Merged
lissam1 merged 5 commits intomicronaut-projects:5.0.xfrom Feb 3, 2026
Merged
Conversation
f220ca7 to
a0d8cb3
Compare
a0d8cb3 to
22dfe10
Compare
lissam1
requested changes
Jan 6, 2026
Comment on lines
8
to
11
| descriptor { | ||
| parentModuleId = "io.micronaut.groovy:micronaut-runtime-groovy" | ||
| } | ||
| } |
Member
There was a problem hiding this comment.
we ship two submodules micronaut-runtime-groovy and micronaut-function-groovy.
i think we need to add descriptor in each submodule build file with the correct name as i mentioned before.
Comment on lines
-6
to
-7
| groovy = "4.0.18" | ||
| spock = "2.3-groovy-4.0" |
Member
There was a problem hiding this comment.
we can keep using groovy version from catalog.
groovy = "5.0.3"
spock = "2.4-groovy-5.0"
|
|
||
| dependencies { | ||
| api platform("org.apache.groovy:groovy-bom:${libs.versions.groovy.get()}") | ||
| api platform("org.apache.groovy:groovy-bom:${mn.versions.groovy.get()}") |
Member
There was a problem hiding this comment.
we can keep using groovy version from catalog.
groovy = "5.0.3"
spock = "2.4-groovy-5.0"
- Remove descriptor from shared groovy-module.gradle - Add descriptor to function-groovy with correct parentModuleId - Add descriptor to runtime-groovy with correct parentModuleId
- Remove manual groovy/spock versions (use catalog) - Remove groovy-test dependency (use catalog)
lissam1
reviewed
Jan 13, 2026
| dependencies { | ||
| compileOnly platform(mn.micronaut.core.bom) | ||
| } | ||
|
|
lissam1
approved these changes
Feb 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #686