Maven的Java 8项目代码覆盖率

net*_*nel 5 code-coverage maven java-8

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

dka*_*zel 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>
Run Code Online (Sandbox Code Playgroud)

它还与Jenkins等持续集成系统很好地集成