-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Remove unnecessary Gradle wrapper from buildSrc #18692
Copy link
Copy link
Closed
Labels
Milestone
Description
buildSrc does not need its own Gradle wrapper and should use the parent project's wrapper. Having a separate wrapper causes Dependabot to detect and attempt to update it independently, creating confusion and unnecessary PRs.
The buildSrc directory currently has Gradle 7.5.1 wrapper files that should be removed:
- buildSrc/gradle/wrapper/gradle-wrapper.properties
- buildSrc/gradle/wrapper/gradle-wrapper.jar
- buildSrc/gradlew
- buildSrc/gradlew.bat
After removal, buildSrc will automatically use the parent project's Gradle 8.14 wrapper.
Reactions are currently unavailable