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 f70b696 commit 37fa6e1Copy full SHA for 37fa6e1
src/main/groovy/org/scoverage/ScoverageExtension.groovy
@@ -84,15 +84,18 @@ class ScoverageExtension {
84
testSourceSet.runtimeClasspath
85
}
86
})
87
+ group = 'verification'
88
89
90
project.tasks.create(ScoveragePlugin.REPORT_NAME, ScoverageReport.class) {
91
dependsOn(project.tasks[ScoveragePlugin.TEST_NAME])
92
onlyIf { ScoveragePlugin.extensionIn(project).dataDir.list() }
93
94
95
96
project.tasks.create(ScoveragePlugin.CHECK_NAME, OverallCheckTask.class) {
97
dependsOn(project.tasks[ScoveragePlugin.REPORT_NAME])
98
99
100
101
sources = project.projectDir
0 commit comments