2014-06-06 2 views
0

안녕하세요, maven을 사용하여 fpr 파일에서 PDF 보고서를 생성하려고합니다. 플러그인에서 사용할 수있는 플러그인이 있는지 알려줄 수 있습니까?FORTIFY의 fpr 파일을 사용하여 Maven을 통해 PDF 보고서를 생성하는 방법

다음은 달성하고 싶지만 메이븐에서 얻은 결과입니다. 명령 프롬프트에서 명령 : "하는 ReportGenerator -format PDF -f outputFile.pdf -source DEV-RKM-KMS-aggregate.fpr"

감사

답변

1

당신은하는 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> 
관련 문제