-
-
Notifications
You must be signed in to change notification settings - Fork 953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compile grails-shell, grails-gradle-model and grails-bootstrap w/ Gradle Groovy version #13653
Merged
jamesfredley
merged 29 commits into
7.0.x
from
jamesfredley/fix-use-gradle-groovy-version
Sep 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
f6de935
compile grails-shell and grails-gradle-model with the Groovy version …
jamesfredley 9c66b00
Update grails-boostrap
jamesfredley f77f071
Merge branch '7.0.x' into jamesfredley/fix-use-gradle-groovy-version
jamesfredley 42dd604
Remove code that forces Groovy 4 now that dependencies have been updated
jamesfredley ba22622
cleanup
jamesfredley 4663a52
cleanup
jamesfredley d869a0c
restore groovy 4 configuration
jamesfredley 3ab8ea4
Adjust dependency scope
jamesfredley 743b4b6
more version cleanup
jamesfredley 36942dd
more cleanup
jamesfredley 8b74731
cleanup
jamesfredley 0073110
update github workflow
jamesfredley 27af60b
update github workflow
jamesfredley 0051fff
Remove code that forces Groovy 4 now that dependencies have been updated
jamesfredley 0d11153
try --rerun-tasks
jamesfredley 6cfc4cb
test with groovy 3 on test
jamesfredley d1c0949
force groovy 3 in grails-bootstrap
jamesfredley 6462ea5
groovy 4.0.23
jamesfredley 95493cd
experiment
jamesfredley c1fa6a9
followup experiment
jamesfredley 5bda1fb
Revert "force groovy 3 in grails-bootstrap"
jamesfredley 0a98a80
Update dependencies
jamesfredley 94391ba
Revert "try --rerun-tasks"
jamesfredley 18640d5
Revert "Remove code that forces Groovy 4 now that dependencies have b…
jamesfredley e088592
Revert "update github workflow"
jamesfredley 26f22d7
Revert "update github workflow"
jamesfredley 17cc395
PR feedback
jamesfredley 6b62af5
fix groovydoc
jamesfredley a926e13
fix: get `groovydoc` task working again
matrei File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
dependencies { | ||
// compile grails-gradle-model with the Groovy version provided by Gradle | ||
// to ensure build compatibility with Gradle, currently Groovy 3.0.x | ||
// when used by grails-gradle-plugin | ||
// see: https://docs.gradle.org/current/userguide/compatibility.html#groovy | ||
compileOnly "org.codehaus.groovy:groovy:$GroovySystem.version" | ||
} |
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about this one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I left this one as org.apache.groovy and 4.0.x since it was not for compilation and is needed by at least one project down the line that is running it with Groovy 4 (not grails-gradle-plugin)
We did the same on https://github.com/bertramdev/asset-pipeline/blob/5.0.x/asset-pipeline-core/build.gradle#L56-L74
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, but the one in
asset-pipeline
istestImplementation
. This one isapi
. Doesn'tapi
put it on thecompileClasspath
?