We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9614738 commit 31cfb6dCopy full SHA for 31cfb6d
all/build.gradle
@@ -50,7 +50,9 @@ javadoc {
50
51
task jacocoMerge(type: JacocoMerge) {
52
dependsOn(subprojects.jacocoTestReport.dependsOn)
53
+ dependsOn(project(':grpc-interop-testing').jacocoTestReport.dependsOn)
54
mustRunAfter(subprojects.jacocoTestReport.mustRunAfter)
55
+ mustRunAfter(project(':grpc-interop-testing').jacocoTestReport.mustRunAfter)
56
destinationFile = file("${buildDir}/jacoco/test.exec")
57
executionData = files(subprojects.jacocoTestReport.executionData)
58
.plus(project(':grpc-interop-testing').jacocoTestReport.executionData)
0 commit comments