嗨,我正在尝试使用maven从fpr文件生成PDF报告。谁能告诉我是否有插件可用于此?
以下是我想要实现的输出,但从maven。命令提示符中的命令:"ReportGenerator -format pdf -f outputFile.pdf -source dev-rkm-KMS-aggregate. "玻璃钢"
谢谢
您可以使用exec插件来运行reportgenerator:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.2</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
<phase>...</phase>
</execution>
</executions>
<configuration>
<executable>ReportGenerator</executable>
<!--optional -->
<arguments>
<argument>...</argument>
</arguments>
</configuration>
</plugin>