我的要求是创建一个覆盖代码的.csv文件。我使用jacococ库。在两个创建两个jacoco.exec文件的服务器实例中运行测试用例。我想将它们合并为一个。这该怎么做 ? 下面是pom.xml的一部分。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<destFile>${project.build.directory}</destFile>
</configuration>
</execution>
<execution>
<id>merge-all-jacoco</id>
<goals><goal>merge</goal></goals>
<phase>install</phase>
<configuration>
<destFile>merged.exec</destFile>
<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<includes>
<include>*.exec</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>