I have question about maven. How can I disable buildnumber-maven-plugin through command line option. I want to run \"mvn test\" command on our continuous integration server,
Use a profile to control which plug-ins are enabled during the build:
4.0.0 com.me.test demo 1.0 .. .. with-scm org.codehaus.mojo buildnumber-maven-plugin 1.0 validate create true true
The profile can be enabled by running Maven as follows:
mvn -Pwith-scm package