diff --git a/all/build.gradle b/all/build.gradle index 9e70545109..fe9ba18798 100644 --- a/all/build.gradle +++ b/all/build.gradle @@ -52,11 +52,10 @@ tasks.named("javadoc").configure { } tasks.named("jacocoTestReport").configure { - dependsOn(subprojects.jacocoTestReport.dependsOn) - dependsOn(project(':grpc-interop-testing').jacocoTestReport.dependsOn) + mustRunAfter(subprojects.jacocoTestReport.mustRunAfter) + mustRunAfter(project(':grpc-interop-testing').jacocoTestReport.mustRunAfter) executionData.from files(subprojects.jacocoTestReport.executionData) .plus(project(':grpc-interop-testing').jacocoTestReport.executionData) - .filter { f -> f.exists() } reports { xml.required = true html.required = true