Skip to content

Commit 37fa6e1

Browse files
committed
add scoverage tasks to the verification group
1 parent f70b696 commit 37fa6e1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/groovy/org/scoverage/ScoverageExtension.groovy

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,18 @@ class ScoverageExtension {
8484
testSourceSet.runtimeClasspath
8585
}
8686
})
87+
group = 'verification'
8788
}
8889

8990
project.tasks.create(ScoveragePlugin.REPORT_NAME, ScoverageReport.class) {
9091
dependsOn(project.tasks[ScoveragePlugin.TEST_NAME])
9192
onlyIf { ScoveragePlugin.extensionIn(project).dataDir.list() }
93+
group = 'verification'
9294
}
9395

9496
project.tasks.create(ScoveragePlugin.CHECK_NAME, OverallCheckTask.class) {
9597
dependsOn(project.tasks[ScoveragePlugin.REPORT_NAME])
98+
group = 'verification'
9699
}
97100

98101
sources = project.projectDir

0 commit comments

Comments
 (0)