yuva2achieve / solidbase

Automatically exported from code.google.com/p/solidbase
Apache License 2.0
0 stars 0 forks source link

Add a skip parameter to the Maven plugin #160

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
See 
http://maven.apache.org/plugins/maven-surefire-plugin/examples/skipping-test.htm
l and http://mojo.codehaus.org/sql-maven-plugin/examples/execute.html

<configuration>
<skip>${maven.test.skip}</skip>
<skipUpgrade>${skipUpgrade}</skipUpgrade>
</configuration>

With the above, this should automatically work:

mvn -DskipUpgrade=true
and this?:
mvn -DskipUpgrade

Original issue reported on code.google.com by rene.de....@gmail.com on 25 May 2012 at 1:51

GoogleCodeExporter commented 8 years ago
Implemented this:

<configuration>
<skip>${skipDatabase}</skip>
</configuration>

Which makes this possible:

mvn -DskipDatabase=true install

Original comment by rene.de....@gmail.com on 26 May 2012 at 12:33

GoogleCodeExporter commented 8 years ago

Original comment by rene.de....@gmail.com on 10 Jun 2012 at 8:27