我在jacoco合并目标中给出了以下配置
<configuration>
<fileSets> <!-- Implementation attribute not needed in Maven 3 -->
<fileSet>
<directory>${project.build.directory}/coverage-reports/</directory>
<includes>
<include>*.exec</include>
</includes>
</fileSet>
</fileSets>
<!-- File containing the merged data -->
<destFile>${project.build.directory}/jacoco-merged/merged.exec</destFile>
但它在合并期间一直在../target/jacoco.exec中查找exec文件,并跳过合并目标,没有找到合并的exec文件。
我正在使用maven 3.3.9和Jacoco Maven插件0.7.8。