我已将 FlexPMD 集成到我的 pom.xml 文件中,但我需要更改插件运行的阶段和目标。目前它在site
阶段运行,但我需要它在test
或compile
阶段运行。这可能吗?
我的插件代码如下:
<reporting>
<plugins>
<plugin>
<groupId>com.adobe.ac</groupId>
<artifactId>flex-pmd-maven-plugin</artifactId>
<version>1.0.RC4</version>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</reporting>