forked from jspecify/jspecify-reference-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
Update to gradle 9.3.1 and update plugins #13
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
Open
wmdietl
wants to merge
23
commits into
main-eisop
Choose a base branch
from
gradle-9.0.0
base: main-eisop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
f04918a
Update to gradle 9.0.0
wmdietl 5e6d033
Merge branch 'main-eisop' into gradle-9.0.0
wmdietl ac92643
Work around various configuration cache issues
wmdietl 99c4b85
Enable the gradle configuration cache
wmdietl 580575d
Update versions of plugins
wmdietl c1c2c5a
Increase memory for gradle
wmdietl 3cc6290
Changed formatting by spotless update
wmdietl 85d60b4
Address new PreferInstanceofOverGetKind Error Prone check
wmdietl d467bca
Test whether the subproject also needs to be Gradle 9.0.0
wmdietl 996e14c
Add warning-mode all in CI
wmdietl 03d6eae
Missed the one I care about...
wmdietl 0ca6a14
Update Error Prone to 2.42.0
wmdietl 241d0aa
Test whether things work with jspecify/jspecify
wmdietl 611af72
Merge branch 'main-eisop' into gradle-9.0.0
wmdietl e0f35e8
Executing initialize-project in settings.gradle conflicts with the co…
wmdietl 20e0ae4
Don't use the configuration cache for publishing
wmdietl 0b7b570
Adapt more to the configuration cache, needs more checking
wmdietl 03ee21e
Merge branch 'main-eisop' into gradle-9.0.0
wmdietl 62af002
Update to Gradle 9.3.1
wmdietl f776cda
Update more versions
wmdietl 0930273
Only enable Error Prone on supported JDKs
wmdietl 862be3c
CI tests on JDK 17, 21, and 25
wmdietl 64ff367
Merge branch 'main-eisop' into gradle-9.0.0
wmdietl 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 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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,8 @@ | ||
| org.jspecify\:jspecify=1.0.0 | ||
| org.jspecify.conformance\:conformance-test-framework=0.0.0-SNAPSHOT | ||
| org.jspecify.conformance\:conformance-tests=0.0.0-SNAPSHOT | ||
|
|
||
| org.gradle.parallel=true | ||
| org.gradle.jvmargs=-Xmx4g -Dfile.encoding=UTF-8 | ||
| org.gradle.caching=true | ||
| org.gradle.configuration-cache=true | ||
Binary file not shown.
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
Oops, something went wrong.
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.
Enabling
org.gradle.configuration-cache=trueby default will surface configuration-cache incompatibilities immediately. As-is, the build script still performs file I/O during task configuration (e.g.,copyJSpecifyJDKscans files in its configuration block), which will likely prevent configuration-cache reuse. Either make the build fully configuration-cache compatible or consider leaving configuration cache off by default and enabling it only in CI/opt-in until compatibility is complete.