- 我的 jacoco 和坑覆盖范围在目标/站点。
- 我正在尝试将它们转换为pdf。我正在使用 maven-pdf 插件。
- maven-pdf 插件将 checkstyle 和 surefire 转换为 pdf,但不是 jacoco 和 pit。
有什么建议么?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pdf-plugin</artifactId>
<executions>
<execution>
<id>pdf</id>
<phase>site</phase>
<goals>
<goal>pdf</goal>
</goals>
<configuration>
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
<includeReports>true</includeReports>
</configuration>
</execution>
</executions>
<dependencies>
<!-- https://mvnrepository.com/artifact/xalan/xalan -->
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>
</dependencies>
</plugin>