Jacoco Merge目标,不是提供输入文件路径

时间:2017-06-07 06:35:06

标签: maven jacoco-maven-plugin

我在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。

0 个答案:

没有答案