Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.0-bin.zip

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gradle 9 breaks Boot build

High Severity

Bumping the wrapper to Gradle 9.7.0 leaves the project on Spring Boot Gradle plugin 3.0.4, which only supports Gradle 7.5+/8.x. That plugin still uses removed Gradle file-permission APIs (getDirMode/getFileMode), so ./gradlew bootJar in CI is likely to fail with a NoSuchMethodError before packaging succeeds. io.freefair.lombok 6.6.3 is also Gradle 7-era and is similarly at risk.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 5071357. Configure here.

zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
48 changes: 28 additions & 20 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 25 additions & 34 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading