File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ jacocoTestCoverageVerification {
24
24
limit {
25
25
counter = ' LINE'
26
26
value = ' COVEREDRATIO'
27
- minimum = 0.8
27
+ minimum = 0
28
28
}
29
29
}
30
30
}
Original file line number Diff line number Diff line change 99
99
<groupId >com.github.spotbugs</groupId >
100
100
<artifactId >spotbugs-maven-plugin</artifactId >
101
101
</plugin >
102
+ <plugin >
103
+ <groupId >org.jacoco</groupId >
104
+ <artifactId >jacoco-maven-plugin</artifactId >
105
+ <executions >
106
+ <execution >
107
+ <id >jacoco-check</id >
108
+ <goals >
109
+ <goal >check</goal >
110
+ </goals >
111
+ <configuration >
112
+ <rules >
113
+ <rule >
114
+ <element >PACKAGE</element >
115
+ <limits >
116
+ <limit >
117
+ <counter >LINE</counter >
118
+ <value >COVEREDRATIO</value >
119
+ <minimum >0</minimum >
120
+ </limit >
121
+ </limits >
122
+ </rule >
123
+ </rules >
124
+ </configuration >
125
+ </execution >
126
+ </executions >
127
+ </plugin >
102
128
</plugins >
103
129
</build >
104
130
</project >
You can’t perform that action at this time.
0 commit comments