SonarQube Jacoco离线仪器在Maven Multi Module Project中显示0%的覆盖率
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SonarQube Jacoco离线仪器在Maven Multi Module Project中显示0%的覆盖率相关的知识,希望对你有一定的参考价值。
我正在使用Jacoco离线仪器,因为我已将PowerMockito用于我的测试用例。我的是Maven多模块项目。我使用的是PowerMockito 1.65我的SonarQube版本是6.7
JaCoCo在每个模块中生成html文件,但在SonarQube中它显示0%
我的父pom.xml
<properties>
<sonar.version>6.7</sonar.version>
<sonar-java.version>4.2</sonar-java.version>
<sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
</properties>
<dependencies>
<dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>${sonar.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.sonarsource.java</groupId>
<artifactId>sonar-java-plugin</artifactId>
<version>5.0.1.12818</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.agent</artifactId>
<classifier>runtime</classifier>
<version>0.7.9</version>
</dependency>
<dependency>
<groupId>org.sonarsource.java</groupId>
<artifactId>sonar-jacoco-listeners</artifactId>
<version>4.9.0.9858</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
<configuration>
<systemPropertyVariables>
<jacoco-agent.destfile>${project.build.directory}/coverage.exec</jacoco-agent.destfile>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>2.6.1</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sonar-coverage</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<append>true</append>
</configuration>
<executions>
<execution>
<id>default-instrument</id>
<goals>
<goal>instrument</goal>
</goals>
</execution>
<execution>
<id>default-restore-instrumented-classes</id>
<goals>
<goal>restore-instrumented-classes</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<dataFile>${project.build.directory}/coverage.exec</dataFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<modules>
<module>module1</module>
<module>module2</module>
</modules>
用命令clean install test sonar:sonar
运行
如果更改maven jacoco plugin的coverage文件的默认文件位置:
${project.build.directory}/jacoco.exec
你还需要告诉声纳插件在哪里找到它。 Sonar使用了很多properties for the plugin,jacoco报告文件应该是:sonar.jacoco.reportPaths
一旦声纳插件查看到正确的位置它应该工作。注意计算覆盖率声纳使用覆盖文件和编译的类。
请注意:执行mvn clean install test sonar:sonar
这有点多余,因为测试是安装前的一个阶段,安装会做同样的事情。见Maven Life-Cycle。但这不应该在这里。
以上是关于SonarQube Jacoco离线仪器在Maven Multi Module Project中显示0%的覆盖率的主要内容,如果未能解决你的问题,请参考以下文章
SonarQube + Maven + JaCoCo + GitLab CI:Sonar 在升级到 SonarQube 7.9.2 后开始显示 0% 的代码覆盖率
SonarQube + JaCoCo + TeamCity 模块名称错误
SonarQube 覆盖缺少 Jacoco 报告涵盖的一些行
SonarQube 和 JaCoCo (maven) 命名约定