3

我们的 java 应用程序有多个源文件夹,并使用 build-helper-maven-plugin 从所有文件夹中读取源文件,但是当我在应用程序上运行 clover 时,它会生成 clover.xml

coveredelements = 0
coveredconditionals = 0 
coveredmethods = 0
coveredstatements = 0

所有其他指标都有数字

pom.xml

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.8</version>
    <executions>
        <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>add-source</goal>
            </goals>
            <configuration>
                <sources>
                    <source>${basedir}/api/src/main/java</source>
                    <source>${basedir}/common/src/main/java</source>
                    <source>${basedir}/batch/src/main/java</source>
                </sources>
            </configuration>
        </execution>
    </executions>
</plugin>
<plugin>
    <groupId>com.atlassian.maven.plugins</groupId>
    <artifactId>clover-maven-plugin</artifactId>
    <version>4.1.2</version>
    <configuration>
        <includesAllSourceRoots>false</includesAllSourceRoots>
        <jdk>1.8</jdk>
        <excludes>
            <exclude>**/*DO.java</exclude>
        </excludes>
    </configuration>
    <executions>
        <execution>
            <id>clover</id>
            <phase>test</phase>
            <goals>
                <goal>instrument-test</goal>
                <goal>clover</goal>
                <goal>check</goal>
            </goals>
            <configuration>
                <generateHtml>true</generateHtml>
                <generateXml>true</generateXml>
                <jdk>1.8</jdk>
                <includesAllSourceRoots>false</includesAllSourceRoots>
                <targetPercentage>75</targetPercentage>
            </configuration>
        </execution>
    </executions>
</plugin>

为什么很少有指标 0,我是否在插件设置中遗漏了任何内容。

4

1 回答 1

0

可能会影响您的配置中的设置includesAllSourceRoots: false

请参阅文档: http: //openclover.org/doc/maven/latest/instrumentInternal-mojo.html#includesAllSourceRoots

根据文档,如果将其设置为,false使用源根目录src/main/java

于 2019-04-17T17:42:31.767 回答