-
Notifications
You must be signed in to change notification settings - Fork 73
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
Upgrade Gradle wrapper to the latest version #1371
Conversation
Generate changelog in
|
Was doing this change on https://github.palantir.build/excavator-checks/excavator-gradle/pull/3417 as well, but excavator pushed over my commits 😬 Moved the change request to this PR instead |
} | ||
|
||
/** | ||
* Still support old consumers which don't declare a required usage, such as gradle-docker's docker configuration. |
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.
This is a big wat - no idea what this is actually doing. Since we don't really use gradle-docker internally, at least not for anything that matters, I'm ok attempting to remove this.
Before this PR
Upgrading to gradle wrapper version
7.5
.After a lot of digging up and trying to make sense of how attribute matching works in variant disambiguation, looks like there were changes in gradle
>=7.4
that make variant resolution a bit different.BLUF is that a custom disambiguation rule we added for compat with clients on older versions is causing trouble in variant resolution on consumers after gradle
7.4
. Removing this custom rule solves the issue, and I don't see / wasn't able to find a reason for us to have it.After this PR
==COMMIT_MSG==
Gradle wrapper is updated to latest version
7.5
==COMMIT_MSG==
Possible downsides?