您好我正在尝试使用maven从fpr文件生成PDF报告。 任何人都可以告诉我是否有可用的插件吗?
以下是我想要从maven获得的输出。 命令提示符中的命令:“ReportGenerator -format pdf -f outputFile.pdf -source dev-rkm-KMS-aggregate.fpr”
由于
答案 0 :(得分:1)
您可以使用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>