Skip to content

Commit

Permalink
Add jacoco configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
martinabsmeier committed Apr 1, 2023
1 parent d91067c commit 77ba053
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -192,13 +192,30 @@
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>check</id>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<formats>
<format>XML</format>
</formats>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>0.80</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 77ba053

Please sign in to comment.