File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 2323}
2424
2525apply plugin : ' java'
26+ apply from : " $projectDir /gradle/coverage.gradle"
2627apply from : " $projectDir /gradle/publishing.gradle"
2728
2829repositories {
@@ -34,7 +35,7 @@ repositories {
3435}
3536
3637group = ' io.engagingspaces'
37- version = ' 1.0.0 '
38+ version = ' 0.9.1 '
3839
3940task docProcessing (type : JavaCompile , group : ' build' ) {
4041 source = sourceSets. main. java
Original file line number Diff line number Diff line change 1+ apply plugin : ' jacoco'
2+
3+ jacoco {
4+ toolVersion = ' 0.7.6.201602180812'
5+ }
6+
7+ jacocoTestReport {
8+ dependsOn " test"
9+
10+ group = " Reporting"
11+ description = " Generate code coverage results using JaCoCo."
12+
13+ reports {
14+ xml. enabled = true
15+ csv. enabled = false
16+ html. enabled = true
17+ html. destination " $buildDir /jacocoHtml"
18+ }
19+ }
You can’t perform that action at this time.
0 commit comments