We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2af08e commit a85e196Copy full SHA for a85e196
gradle/buildscript.gradle
@@ -1,3 +1,5 @@
1
// Executed in context of buildscript
2
-dependencies { classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.6.0' }
3
-
+dependencies {
+ classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.6.0'
4
+ classpath 'com.mapvine:gradle-cobertura-plugin:0.1'
5
+}
gradle/check.gradle
@@ -15,4 +15,11 @@ subprojects {
15
apply plugin: 'pmd'
16
//tasks.withType(Pmd) { reports.html.enabled true }
17
18
+ apply plugin: 'cobertura'
19
+ cobertura {
20
+ sourceDirs = sourceSets.main.java.srcDirs
21
+ format = 'html'
22
+ includes = ['**/*.java', '**/*.groovy']
23
+ excludes = []
24
+ }
25
}
0 commit comments