Maven的Java 8项目代码覆盖率

时间:2015-10-07 13:47:17

标签: maven java-8 code-coverage

我想为我的Java 8 Maven项目创建代码覆盖率报告。我使用Cobertura时遇到问题,因为它无法处理Java 8语法。 有熟悉解决方法的人吗?任何其他Maven插件?

1 个答案:

答案 0 :(得分:5)

使用适用于Java 8的JaCoCo

以下是我的pom中的插件XML:

<build>
...
<plugin>
    <groupId>org.jacoco</groupId>
    <artifactId>jacoco-maven-plugin</artifactId>
    <version>0.7.5.201505241946</version>
    <executions>
        <execution>
            <id>default-prepare-agent</id>
            <goals>
                <goal>prepare-agent</goal>
            </goals>
        </execution>
        <execution>
            <id>default-report</id>
            <phase>prepare-package</phase>
            <goals>
                <goal>report</goal>
            </goals>

        </execution>
        <execution>
            <id>default-check</id>
            <goals>
                <goal>check</goal>
            </goals>
            <configuration>
<rules><!-- implementation is needed only for Maven 2 -->
    <rule implementation="org.jacoco.maven.RuleConfiguration">
        <element>BUNDLE</element>
        <limits><!-- implementation is needed only for Maven 2 -->
            <limit implementation="org.jacoco.report.check.Limit">
                <counter>COMPLEXITY</counter>
                <value>COVEREDRATIO</value>
                <minimum>0.60</minimum>
            </limit>
        </limits>
    </rule>
</rules>
</configuration>
        </execution>
    </executions>
</plugin>
...
</build>

它还与Jenkins

等持续集成系统实现了良好的集成