0

您好我正在尝试使用 maven 从 fpr 文件生成 PDF 报告。谁能告诉我是否有可用的插件?

以下是我想要实现但来自 maven 的输出。命令提示符中的命令:“ReportGenerator -format pdf -f outputFile.pdf -source dev-rkm-KMS-aggregate.fpr”

谢谢

4

1 回答 1

1

您可以使用 exec 插件来运行报告生成器:

<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>
于 2014-10-17T06:23:00.327 回答