pom.xml:jacoco: rule and limit implementation hints are not needed with maven 3
Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
parent
5aab3ab9af
commit
5e29aee16f
1 changed files with 3 additions and 3 deletions
6
pom.xml
6
pom.xml
|
@ -274,7 +274,7 @@
|
|||
</executions>
|
||||
<configuration>
|
||||
<rules>
|
||||
<rule implementation="org.jacoco.maven.RuleConfiguration">
|
||||
<rule>
|
||||
<element>CLASS</element>
|
||||
<excludes>
|
||||
<exclude>*Test</exclude>
|
||||
|
@ -285,12 +285,12 @@
|
|||
<value>COVEREDRATIO</value>
|
||||
<minimum>0.50</minimum>
|
||||
</limit>
|
||||
<limit implementation="org.jacoco.report.check.Limit">
|
||||
<limit>
|
||||
<counter>INSTRUCTION</counter>
|
||||
<value>COVEREDRATIO</value>
|
||||
<minimum>0.80</minimum>
|
||||
</limit>
|
||||
<limit implementation="org.jacoco.report.check.Limit">
|
||||
<limit>
|
||||
<counter>CLASS</counter>
|
||||
<value>MISSEDCOUNT</value>
|
||||
<maximum>0</maximum>
|
||||
|
|
Loading…
Reference in a new issue