We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This was detected by Gradle's own smoke tests:
gradle-dependency-lock-plugin/src/main/kotlin/nebula/plugin/dependencyverifier/DependencyResolutionVerifier.kt
Line 76 in d9c5cee
Gradle is in the process of deprecating Gradle.buildFinished and other build scope listeners (such as TaskGraphExecution.addTaskExecutionListener) starting in Gradle 8.10 (currently, it is only reported as a problem when configuration cache is enabled).
Gradle.buildFinished
TaskGraphExecution.addTaskExecutionListener
Instead of using Gradle.buildFinished, plugins should use "always" flow actions.
"always"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This was detected by Gradle's own smoke tests:
gradle-dependency-lock-plugin/src/main/kotlin/nebula/plugin/dependencyverifier/DependencyResolutionVerifier.kt
Line 76 in d9c5cee
Gradle is in the process of deprecating
Gradle.buildFinished
and other build scope listeners (such asTaskGraphExecution.addTaskExecutionListener
) starting in Gradle 8.10 (currently, it is only reported as a problem when configuration cache is enabled).Instead of using
Gradle.buildFinished
, plugins should use"always"
flow actions.The text was updated successfully, but these errors were encountered: