看起来有几个问题,这些问题很老了,而且从Java 8对Jacoco的支持开始就发生了变化。
我的项目包含以下结构
pom.xml
|
|
-----sub module A pom.xml
|
|
-----sub module B pom.xml
|
|
-----sub module C pom.xml
我已经像这样配置了main pom
主POM.xml
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.test</groupId>
<artifactId>jacoco-multi</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>projectA</module>
<module>projectB</module>
</modules>
<properties>
<jacoco.version>0.5.7.201204190339</jacoco.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>4.10</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3.RC2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3.RC2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.5.201505241946</version>
<configuration>
<destFile>${project.basedir}/../target/jacoco.exec</destFile>
<append>true</append>
</configuration>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.16</version>
<executions>
<execution>
<id>default-integration-test</id>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
</plugin>
</plugins>
</build>
</project>
A Pom.xml
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>jacoco-multi</artifactId>
<groupId>com.test</groupId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>projectA</artifactId>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
B pom.xml
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>jacoco-multi</artifactId>
<groupId>com.test</groupId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>projectB</artifactId>
<dependencies>
<dependency>
<groupId>com.test</groupId>
<artifactId>projectA</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
</plugin>
</plugins>
</pluginManagement>
</build>
我正在执行这个命令mvn clean package
。我可以看到jacoco.exec正在生成,但我无法看到任何HTML报告正在验证数据。
请帮我一下。另外一点是,我的配置对于Multi-Module
项目是正确的吗?
更新
已识别问题。<destFile>${project.basedir}/../target/jacoco.exec</destFile>
变更为<destFile>${project.basedir}/target/jacoco.exec</destFile>
现在它为各个模块生成报告。如何生成合并报表
6条答案
按热度按时间ckocjqey1#
JaCoCo版本0.7.7可以通过新的目标
jacoco:report-aggregate
从多个Maven模块generate an aggregate coverage report。vxf3dgd42#
在扫描了许多解决方案之后,我创建了一个简单但完整的Jacoco演示项目,显示:
mvn clean install
)mvn clean install -P integration-test
)享受X1 E0 F1 X。在这个简单的项目中,README.md文件包含您要查找的信息。例如:
简单的演示项目包含3个分支:
1.主分支-包含上述功能
1.仅多模块单元测试-包含仅具有单元测试的模块
omqzjyyz3#
遵循以下说明
1.创建一个新的子项目(通常称为maven模块)。这将用作报告聚合器。
父pom将是这样的:
1.在聚合器模块pom-添加其他子项目依赖项。
1.在聚合器模块pom中-配置jacoco插件
1.在聚合器模块pom中-将surefire插件配置为
1.(可选步骤)如果任何人面临以下警告/错误:包“*”中的类与执行数据不匹配。生成报表时,必须使用与运行时相同的类文件。**
然后在聚合器模块pom中添加下面提到的行
1.运行
mvn clean install
qyswt5oh4#
如果聚合器pom用作模块的父pom,则会导致多模块项目中的一个问题,就像上面的示例中的情况一样:
在这种情况下,构建顺序为:
这意味着父聚合器不能收集完整的信息。在我的案例中,mvn sonar将数据传输到sonarQube:sonar导致了意想不到的和不完整的结果。
将模块结构更改为:
将生成顺序更改为:
在这种情况下,聚合器将是最后一个,并与模块的结果一起工作。在我的情况下,SonarQube的结果就像预期的那样。
vi4fp9gy5#
运行覆盖率为... Junit分别为每个模块。然后创建启动组并添加每个运行配置。有一个弹出的“启动模式”,选项继承,配置文件,覆盖率,调试或运行。为所有人选择覆盖范围。您可能还希望选择“等待终止”。
您现在可以通过一次单击运行所有的覆盖测试。完成后,您需要进入Coverage View并选择合并会话(双红/绿色条),然后将它们全部合并到一个报告中。
q43xntqr6#
对于任何想要在一个报告中找到合并单元测试和UI测试的简单解决方案的人:
}
重要:应用插件jacoco模块你想要的覆盖面