我们正在 flex-pmd-maven-plugin 中寻找一个选项,以使用命令行选项暂时跳过 pmd 执行。maven pmd 插件有一个 -Dpmd.skip=true 选项。
我也在为 flex-pmd-maven-plugin 寻找类似的东西。
<plugin>
<groupId>com.adobe.ac</groupId>
<artifactId>flex-pmd-maven-plugin</artifactId>
<version>${flex-pmd.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<ruleSet>build_rules/Flexpmd.xml</ruleSet>
<excludePackage>**/Mocked*.as</excludePackage>
</configuration>
</plugin>
我查看了插件的源代码,似乎没有选择这样做。欢迎任何想法或解决此问题的方法..