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 23
23
}
24
24
25
25
apply plugin : ' java'
26
+ apply from : " $projectDir /gradle/coverage.gradle"
26
27
apply from : " $projectDir /gradle/publishing.gradle"
27
28
28
29
repositories {
@@ -34,7 +35,7 @@ repositories {
34
35
}
35
36
36
37
group = ' io.engagingspaces'
37
- version = ' 1.0.0 '
38
+ version = ' 0.9.1 '
38
39
39
40
task docProcessing (type : JavaCompile , group : ' build' ) {
40
41
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