對於我小的Java/Maven的應用程序,我在我的pom.xml使用JaCoCo爲下:JaCoCo報告格式
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
<configuration>
<destFile>${basedir}/target/coverage-reports/jacoco.exec</destFile>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
只要我不使用<destFile>
參數,在target/site/jacoco
文件夾的默認報告正確地以XML,CSV和HTML格式生成。但是,當我使用<destFile>
元素來更改生成報告的默認文件夾時,只生成jacoco.exec
文件,而沒有其他文件。我如何更改報告文件夾以及以csv,xml和html格式獲取報告?
再次感謝你:) – user1107888