-
Notifications
You must be signed in to change notification settings - Fork 14
Description
Hi when I try to run the single task ./gradlew pitestDebug it works but when I run it with the aggregator I get an error:
`
-
What went wrong:
A problem was found with the configuration of task ':feature:compileReleaseKotlin' (type 'KotlinCompile').Reason: Task ':feature:pitestDebug' uses this output of task ':feature:compileReleaseKotlin' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed.
Possible solutions:
1. Declare task ':feature:compileReleaseKotlin' as an input of ':feature:pitestDebug'.
2. Declare an explicit dependency on ':feature:compileReleaseKotlin' from ':feature:pitestDebug' using Task#dependsOn.
3. Declare an explicit dependency on ':feature:compileReleaseKotlin' from ':feature:pitestDebug' using Task#mustRunAfter.For more information, please refer to https://docs.gradle.org/8.7/userguide/validation_problems.html#implicit_dependency in the Gradle documentation.
`
Adding a task
`
tasks.named("pitestDebug") {
}
`
gives me an error Task with name 'pitestDebug' not found in project