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>
|
</executions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<rules>
|
<rules>
|
||||||
<rule implementation="org.jacoco.maven.RuleConfiguration">
|
<rule>
|
||||||
<element>CLASS</element>
|
<element>CLASS</element>
|
||||||
<excludes>
|
<excludes>
|
||||||
<exclude>*Test</exclude>
|
<exclude>*Test</exclude>
|
||||||
|
@ -285,12 +285,12 @@
|
||||||
<value>COVEREDRATIO</value>
|
<value>COVEREDRATIO</value>
|
||||||
<minimum>0.50</minimum>
|
<minimum>0.50</minimum>
|
||||||
</limit>
|
</limit>
|
||||||
<limit implementation="org.jacoco.report.check.Limit">
|
<limit>
|
||||||
<counter>INSTRUCTION</counter>
|
<counter>INSTRUCTION</counter>
|
||||||
<value>COVEREDRATIO</value>
|
<value>COVEREDRATIO</value>
|
||||||
<minimum>0.80</minimum>
|
<minimum>0.80</minimum>
|
||||||
</limit>
|
</limit>
|
||||||
<limit implementation="org.jacoco.report.check.Limit">
|
<limit>
|
||||||
<counter>CLASS</counter>
|
<counter>CLASS</counter>
|
||||||
<value>MISSEDCOUNT</value>
|
<value>MISSEDCOUNT</value>
|
||||||
<maximum>0</maximum>
|
<maximum>0</maximum>
|
||||||
|
|
Loading…
Reference in a new issue