通过maven插件方式使用Jacoco统计代码覆盖率
Posted wangfg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过maven插件方式使用Jacoco统计代码覆盖率相关的知识,希望对你有一定的参考价值。
<build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.5</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <goals> <goal>report</goal> </goals> </execution> <execution> <id>default-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>BUNDLE</element> <limits> <limit> <counter>COMPLEXITY</counter> <value>COVEREDRATIO</value> <minimum>0.10</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build>
1、在pom.xml文件中添加jacoco插件,如上;
2、执行maven install 命令 ,在targetsitejacoco目录下可看到代码覆盖率html文件。
以上是关于通过maven插件方式使用Jacoco统计代码覆盖率的主要内容,如果未能解决你的问题,请参考以下文章
通过代码方式使用Jacoco远程统计tomcat服务的代码覆盖率
通过ant方式使用Jacoco远程统计tomcat服务的代码覆盖率