BAU: Upgrade Gradle to 9.5.0#8337
Open
alhcomer wants to merge 5 commits into
Open
Conversation
2577bfc to
760cdf7
Compare
- project.buildDir is removed in Gradle 9 - Replace all usages with layout.buildDirectory across the root build.gradle and pact subproject build files See: https://docs.gradle.org/9.5.0/userguide/upgrading_version_8.html#project_builddir
fcf37b2 to
01f40cb
Compare
- Project#exec is removed in Gradle 9 - Inject ExecOperations via @Inject into the Terraform task class and use it for all exec calls See: https://docs.gradle.org/9.5.0/userguide/upgrading_version_8.html#deprecated_project_exec
- VersionNumber and lenientConfiguration are removed in Gradle 9 - Use artifactView with lenient mode and a simple version comparator instead See: https://docs.gradle.org/9.5.0/userguide/upgrading_version_8.html#org_gradle_util_reports_deprecations_8 See: https://docs.gradle.org/9.5.0/userguide/upgrading_version_8.html#deprecate_legacy_configuration_get_files
- SpotBugs: 6.4.8 → 6.5.0 - docker-compose: 0.17.12 → 0.17.21 - Pact: 4.6.18 → 4.7.0 (with library 4.6.20 → 4.7.0) - Add testClassesDirs/classpath to custom Test tasks for Gradle 9 See: https://docs.gradle.org/9.5.0/userguide/upgrading_version_8.html#relying_on_conventions_for_custom_test_tasks
- Upgrade from Gradle 8.14.3 to 9.5.0 - Add jackson-core buildscript constraint for GHSA-72hv-8253-57qq - All deprecated API usages fixed in prior commits See: https://docs.gradle.org/9.5.0/userguide/upgrading_version_8.html
01f40cb to
6397f26
Compare
|
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.



What
project.buildDirwithlayout.buildDirectoryAPI (removed in Gradle 9)project.execwith injectedExecOperationsin Terraform task (removed in Gradle 9)VersionNumberandresolvedConfiguration.lenientConfigurationin searchForDependency task (removed in Gradle 9)How to review