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 26af85b commit 6e631d1Copy full SHA for 6e631d1
build.gradle
@@ -61,7 +61,9 @@ dependencies {
61
tasks.named('test') {
62
useJUnitPlatform()
63
jvmArgs("-XX:+EnableDynamicAgentLoading")
64
- finalizedBy 'jacocoTestReport'
+ if (gradle.startParameter.taskNames.contains('build')) {
65
+ finalizedBy 'jacocoTestReport'
66
+ }
67
}
68
69
def jacocoDir = layout.buildDirectory.dir("reports/")
0 commit comments