This was detected by Gradle's own smoke tests:
|
project.gradle.buildFinished { buildResult -> |
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).
Instead of using Gradle.buildFinished, plugins should use "always" flow actions.
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.buildFinishedand 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.