We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad8ea1 commit b52dd5aCopy full SHA for b52dd5a
1 file changed
build.gradle
@@ -101,14 +101,14 @@ javadoc {
101
options.taglets 'DochubTaglet'
102
}
103
104
-task testAll(dependsOn: tasks.withType(Test))
105
-
106
gradle.taskGraph.whenReady { taskGraph ->
107
- if (taskGraph.hasTask(check)) {
+ if (taskGraph.hasTask(testCoverage)) {
108
tasks.withType(Test) { jacoco { enabled = true } }
109
110
111
+task testCoverage(dependsOn: test)
+
112
task wrapper(type: Wrapper) {
113
gradleVersion = '1.9'
114
0 commit comments