Skip to content

Commit 85cd95a

Browse files
Merge branch '13.0.x' into 13.1.x
2 parents 59840d7 + e8e4170 commit 85cd95a

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

pom.xml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,76 @@
297297

298298
<build>
299299
<plugins>
300+
<plugin>
301+
<groupId>org.jacoco</groupId>
302+
<artifactId>jacoco-maven-plugin</artifactId>
303+
<executions>
304+
<execution>
305+
<id>prepare-agent</id>
306+
<goals>
307+
<goal>prepare-agent</goal>
308+
</goals>
309+
</execution>
310+
<execution>
311+
<id>prepare-agent-it</id>
312+
<goals>
313+
<goal>prepare-agent-integration</goal>
314+
</goals>
315+
</execution>
316+
<execution>
317+
<id>check</id>
318+
<goals>
319+
<goal>check</goal>
320+
</goals>
321+
<configuration>
322+
<rules>
323+
<rule>
324+
<element>BUNDLE</element>
325+
<limits>
326+
<limit>
327+
<counter>INSTRUCTION</counter>
328+
<value>COVEREDRATIO</value>
329+
<minimum>0.70</minimum>
330+
</limit>
331+
<limit>
332+
<counter>BRANCH</counter>
333+
<value>COVEREDRATIO</value>
334+
<minimum>0.50</minimum>
335+
</limit>
336+
<limit>
337+
<counter>COMPLEXITY</counter>
338+
<value>COVEREDRATIO</value>
339+
<minimum>0.50</minimum>
340+
</limit>
341+
<limit>
342+
<counter>LINE</counter>
343+
<value>COVEREDRATIO</value>
344+
<minimum>0.50</minimum>
345+
</limit>
346+
<limit>
347+
<counter>METHOD</counter>
348+
<value>COVEREDRATIO</value>
349+
<minimum>0.80</minimum>
350+
</limit>
351+
<limit>
352+
<counter>CLASS</counter>
353+
<value>COVEREDRATIO</value>
354+
<minimum>0.80</minimum>
355+
</limit>
356+
</limits>
357+
</rule>
358+
</rules>
359+
</configuration>
360+
</execution>
361+
<execution>
362+
<id>report</id>
363+
<phase>test</phase>
364+
<goals>
365+
<goal>report</goal>
366+
</goals>
367+
</execution>
368+
</executions>
369+
</plugin>
300370
<plugin>
301371
<groupId>org.apache.maven.plugins</groupId>
302372
<artifactId>maven-failsafe-plugin</artifactId>

0 commit comments

Comments
 (0)