从 0 开始带你成为JVM实战高手
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<!-- 准备 java agent -->
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<goals>
<!-- 生成测试报告 -->
<goal>report</goal>
</goals>
<phase>test</phase>
</execution>
<execution>
<id>default-check</id>
<goals>
<!-- 当测试率不满足预先设定的阈值时失败 -->
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>