We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df00542 commit d79c16fCopy full SHA for d79c16f
gradle/aggregate-jacoco-report.gradle
@@ -12,7 +12,13 @@ project.afterEvaluate {
12
13
tasks.create(name: 'aggregateJacocoTestReport', type: JacocoReport) {
14
15
- dependsOn ':spring-pulsar-cache-provider:compileJava', ':spring-pulsar-cache-provider-caffeine:compileJava'
+ dependsOn(
16
+ ':spring-pulsar:compileJava',
17
+ ':spring-pulsar-reactive:compileJava',
18
+ ':spring-pulsar-cache-provider:compileJava',
19
+ ':spring-pulsar-cache-provider:test',
20
+ ':spring-pulsar-cache-provider-caffeine:compileJava')
21
+
22
23
group = 'verification'
24
description = 'Generates aggregate code coverage report for all projects test tasks'
0 commit comments