使用带有jacoco的sonar-maven-plugin时的SonarQube测试覆盖问题

时间:2015-05-05 09:40:00

标签: java maven sonarqube code-coverage jacoco-maven-plugin

我们有一个多模块maven项目,其中sonar-maven-plugin和jacoco maven-plugin在父pom中定义:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>${jacoco.version}</version>
            <configuration>
                <destFile>${sonar.jacoco.reportPath}</destFile>
                <append>true</append>
                <excludes>
                    <exclude>**/generated/**</exclude>
                </excludes>
            </configuration>
            <executions>
                <execution>
                    <id>agent</id>
                    <goals>
                        <goal>prepare-agent</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>sonar-maven-plugin</artifactId>
            <version>2.5</version>
        </plugin>

现在我们有一个共同的子模块,再次包含其他子模块:

project structure

在子模块中,maven结构如下:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
       <groupId>be.groupname</groupId>
       <artifactId>artifactname</artifactId>
       <version>1.0-SNAPSHOT</version>
   </parent>

   <modelVersion>4.0.0</modelVersion>
   <groupId>be.groupname</groupId>
   <artifactId>common-master</artifactId>
   <name>Common - Master</name>
   <packaging>pom</packaging>
   <modules>
       <module>bindings</module>
       <module>core</module>
       <module>tools</module>
   </modules>
</project>

子模块核心具有以下maven结构:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <groupId>be.groupid</groupId>
        <artifactId>common-master</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>common-core</artifactId>
    <name>Common - Core</name>
    <packaging>jar</packaging>
    ...
</project>

现在我的问题是,在我的SonarQube报告中,我看到了未覆盖的行:

test coverage

公共主项目包含子模块中的所有未覆盖行(common-core,...)。我希望只有通用核心模块才能包含这些行。

在文件系统中,我看到在common / target文件夹下生成了jacoco.exec。 在子目录common中,我看不到这个文件正在创建,而是我看到一个文件common / core / target / sonar / jacoco-overall.exec

0 个答案:

没有答案