File tree Expand file tree Collapse file tree 1 file changed +4
-27
lines changed Expand file tree Collapse file tree 1 file changed +4
-27
lines changed Original file line number Diff line number Diff line change @@ -55,32 +55,6 @@ jacocoTestReport {
55
55
html. enabled true
56
56
csv. enabled false
57
57
}
58
-
59
- afterEvaluate {
60
- classDirectories = files(classDirectories. files. collect {
61
- fileTree(dir : it, exclude : [
62
- ' **/configuration/**'
63
- ])
64
- })
65
- }
66
- }
67
-
68
- jacocoTestCoverageVerification {
69
- afterEvaluate {
70
- classDirectories = files(classDirectories. files. collect {
71
- fileTree(dir : it, exclude : [
72
- ' **/configuration/**'
73
- ])
74
- })
75
- }
76
-
77
- violationRules {
78
- rule {
79
- limit {
80
- minimum = 0.8
81
- }
82
- }
83
- }
84
58
}
85
59
86
60
sonarqube {
@@ -97,7 +71,10 @@ test {
97
71
events " passed" , " skipped" , " failed"
98
72
}
99
73
100
- finalizedBy jacocoTestReport, jacocoTestCoverageVerification
74
+ jacoco {
75
+ excludes + = [ ' **/configuration/**' ]
76
+ }
77
+ finalizedBy jacocoTestReport
101
78
}
102
79
103
80
if (! project. hasProperty(" REPOSITORY_URI" )) {
You can’t perform that action at this time.
0 commit comments