You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please provide a skip option similar to:
http://mojo.codehaus.org/findbugs-maven-plugin/check-mojo.html#skip
http://mojo.codehaus.org/animal-sniffer-maven-plugin/check-mojo.html#skip
http://maven.apache.org/plugins/maven-checkstyle-plugin/checkstyle-mojo.html#ski
p
http://maven.apache.org/plugins/maven-pmd-plugin/check-mojo.html#skip
@Parameter(property="forbiddenapis.skip", defaultValue="false")
private boolean skip;
That way one can enable the plugin by default and selectively not execute it
via:
mvn clean install -Dforbiddenapis.skip=true
or a profile:
<profile>
<id>fast_build</id>
<properties>
<forbiddenapis.skip>true</forbiddenapis.skip>
</properties>
</profile>
mvn clean install -P fast_build
Original issue reported on code.google.com by sebastia...@gmail.com on 7 Jul 2014 at 7:51
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
sebastia...@gmail.com
on 7 Jul 2014 at 7:51The text was updated successfully, but these errors were encountered: