尝试获取一个jacoco报告,该报告将显示来自多个模块的所有结果。
我可以看到每个子模块在构建项目后都有一个jacoco.exec,但不确定如何让它输出一个报告,该报告将包含每个模块的所有结果。
这是我在Root pom.xml中包含的内容:
<plugin>
<groupId>@project.groupId@</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>@project.version@</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
我出于报告目的明确创建了一个新模块。 (例如report-aggregate-module)
删除了组ID并在此示例中使用了通用工件ID:
这是我在此报告聚合子模块的pom.xml中添加的内容:
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>report-aggregate</artifactId>
<groupId>com.name.group</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>report-aggregate</artifactId>
<name>Report Aggregate</name>
<properties>
<wildfly.version>10.0.0.Final</wildfly.version>
<wildfly.artifactId>wildfly-dist</wildfly.artifactId>
</properties>
<dependencies>
<dependency>
<groupId></groupId>
<artifactId>sub-module1</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>sub-module2</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>sub-module3</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>sub-module4</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
似乎编译好了,jacoco exec似乎没有为report-aggregate-module创建。任何人都知道这个解决方案,或者我是否错误地做了这个?
答案 0 :(得分:0)
对不起,如果答案迟到。
我假设您的根pom.xml是一个聚合器,其中<modules>
由module1
,module2
和report-aggregate
组成。这是您麻烦的原因:由于您的根pom.xml是一个聚合器,因此在子模块执行之前它会运行JaCoCo,因此最终报告为空。您应该:
report-aggregate
的目标jacoco-maven-plugin
的配置从根POM移到report-aggregate
POM。这应该可以解决问题,因为您的report-aggregate
POM使用<dependencies>
,而不是<modules>
。prepare-agent
的目标jacoco-maven-plugin
的配置。我建议您访问JaCoCo论坛https://groups.google.com/forum/#!topic/jacoco/FpdLbxsXSTY。它指的是完整的演示集成测试https://github.com/jacoco/jacoco/tree/master/jacoco-maven-plugin.test/it/it-report-aggregate。