gpt4 book ai didi

java - 如何使用 FORTIFY 的 fpr 文件通过 Maven 生成 pdf 报告

转载 作者:行者123 更新时间:2023-12-01 12:52:55 25 4
gpt4 key购买 nike

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

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

谢谢

最佳答案

您可以使用 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>

关于java - 如何使用 FORTIFY 的 fpr 文件通过 Maven 生成 pdf 报告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24086252/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com