-
Notifications
You must be signed in to change notification settings - Fork 754
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
Fix gradle deprecations and update to gradle 8.11.1 #43668
base: master
Are you sure you want to change the base?
Fix gradle deprecations and update to gradle 8.11.1 #43668
Conversation
@@ -55,18 +55,12 @@ subprojects { | |||
buildTasks = ['build'] | |||
git { | |||
// To release from any branch | |||
requireBranch = null | |||
requireBranch.set('') | |||
} | |||
} |
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.
A general question: is this gradle plugin currently still used to release the official versions? If not, then this could be removed. It currently also includes a deprecation warning see also (researchgate/gradle-release#379)
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #43668 +/- ##
============================================
- Coverage 77.40% 77.40% -0.01%
+ Complexity 58584 58583 -1
============================================
Files 3445 3445
Lines 219049 219049
Branches 28961 28961
============================================
- Hits 169561 169547 -14
- Misses 40067 40083 +16
+ Partials 9421 9419 -2 ☔ View full report in Codecov by Sentry. |
Purpose
This pull request includes several changes to the Gradle build files to get rid of deprecation warnings.
It also updates Gradle to the newest version 8.11.1.
Approach
Samples
Remarks
Check List