quote

lunedì, ottobre 06, 2008

Chain commands with maven

If you need to run two (or more) maven command in cascade you can chain these two commands in the following way:

$ mvn commandA commandB

Example:

$ mvn clean install

instead of:

$ mvn clean
$ mvn install

Thanks again to Lucio.

Nessun commento: