Skip to content
A. Cody Schuffelen edited this page Jul 25, 2014 · 1 revision

Quick Reference

To build the entire project, run all the tests, and build the installer:

mvn install

To clean all the generated files:

mvn clean

To build the entire project without installer and run all the tests:

mvn verify

To build the entire project without installer and run only the unit tests:

mvn package

Meaning

package, verify, and install are part of the Maven lifecycle.

Clone this wiki locally