-
Notifications
You must be signed in to change notification settings - Fork 0
Bump gradle-wrapper from 8.11.1 to 9.3.1 #2
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
Closed
Closed
Changes from all commits
Commits
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| #Wed May 28 19:13:17 SGT 2025 | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip | ||
| networkTimeout=10000 | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
🧩 Analysis chain
🌐 Web query:
Gradle 9.3.1 release notes breaking changes between 8.x and 9.x💡 Result:
Gradle 9.3.1 release notes (2026-01-29)
Gradle 9.3.1 is a patch release (bug fixes + improvements) and is recommended over 9.3.0; it also includes fixes for repository-hardening behavior and other regressions, plus security advisories. It does not introduce new “8.x → 9.x”-style breaking changes by itself. [1]
Breaking changes when upgrading from Gradle 8.x → 9.x (primarily 9.0.0)
Key breaking / behavior-changing items called out by Gradle’s 9.0 upgrade guide and 9.0 highlights:
this@Build_gradleno longer work. [2]Testtasks no longer inherit defaults from thetestsource set (deprecated since 8.1): extraTesttasks that relied on convention may silently run zero tests unless you settestClassesDirs/classpath(or use test suites). [2]archives; you must add them explicitly. [2]jcenter()repository shortcut removed. [2]-c/--settings-file,-b/--build-file. [2]org.gradle.utilhelpers; unix-mode integer permission APIs; some Groovy modules removed from the distribution). [2]9.x line “breaking changes” after 9.0 (if you’re coming from early 9.x to 9.3.1)
Not 8→9, but relevant if you’re jumping across 9.x versions:
ObjectFactory#dependencyCollector()removed; plus bundled-plugin consumable configurations become lazily initialized (can change whenconfigurations.named(...).configure {}runs). [4]Sources: Gradle 9.3.1 release notes [1], Gradle 9.0 upgrade guide [2], Gradle 9.0 highlights [3], Gradle 9.x upgrade guide [4].
Major version upgrade from Gradle 8.x to 9.x—verify build compatibility with breaking changes.
The distribution URL and network timeout settings are standard for Gradle wrapper configuration. However, Gradle 9.x introduces several breaking changes that require attention:
this@Build_gradleno longer work)Testtasks may silently run zero tests unlesstestClassesDirsandclasspathare explicitly setjcenter()repository, CLI options-c/--settings-fileand-b/--build-fileReview your build scripts, plugins, and test configuration before merging.
🤖 Prompt for AI Agents