-
Notifications
You must be signed in to change notification settings - Fork 9
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
Gradle deprecation warning for Report.enabled #17
Comments
Yes, the JaCoCo plugin also uses task/configuration avoidance now. This is an issue also in other places, see #18 for example. In this case, the Gradle version used for this plugin needs to be updated to at least 6.1 in order to have this new API available. |
P.S.: I also assume you mean version 7.3, right? |
I have to drop this plugin due to its incompatibility with Gradle 8.0, with the following error:
|
There is a fix in #22 |
When upgrading my local gradle setup to version 3.7 I noticed this warning:
The culprit seems to be https://github.com/jansauer/gradle-print-coverage-plugin/blob/master/src/main/groovy/de/jansauer/printcoverage/PrintCoveragePlugin.groovy#L13
The proposed solution is to use
required
instead ofenabled
.The text was updated successfully, but these errors were encountered: