Skip to content

Commit 355bc2e

Browse files
committed
Jacoco plugin added
1 parent 9b14c3f commit 355bc2e

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

liquidjava-verifier/pom.xml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,45 @@
213213
<!-- <autoPublish>true</autoPublish> -->
214214
</configuration>
215215
</plugin>
216+
<plugin>
217+
<groupId>org.jacoco</groupId>
218+
<artifactId>jacoco-maven-plugin</artifactId>
219+
<version>0.8.14</version>
220+
<executions>
221+
<execution>
222+
<id>default-prepare-agent</id>
223+
<goals>
224+
<goal>prepare-agent</goal>
225+
</goals>
226+
</execution>
227+
<execution>
228+
<id>default-report</id>
229+
<goals>
230+
<goal>report</goal>
231+
</goals>
232+
</execution>
233+
<execution>
234+
<id>default-check</id>
235+
<goals>
236+
<goal>check</goal>
237+
</goals>
238+
<configuration>
239+
<rules>
240+
<rule>
241+
<element>BUNDLE</element>
242+
<limits>
243+
<limit>
244+
<counter>COMPLEXITY</counter>
245+
<value>COVEREDRATIO</value>
246+
<minimum>0.60</minimum>
247+
</limit>
248+
</limits>
249+
</rule>
250+
</rules>
251+
</configuration>
252+
</execution>
253+
</executions>
254+
</plugin>
216255
</plugins>
217256
</build>
218257

0 commit comments

Comments
 (0)