...
Build Project and Run All Tests
Builds all artifacts, installs artifacts to local repo, and runs testsGo to the most outer project directory and run:
Code Block |
---|
mvn clean install
|
It will compile, run tests, build all artifacts and install them to your local repo. Built artifacts are located in the target directory of each module (api/web/webapp)
Code Block |
---|
mvn clean install
|
Build Project and skip running testsTo build the project, but skip running tests (you must run tests when building for the first time in order to create test artifacts):
Code Block |
---|
mvn clean install -DskipTests |
Run To run individual tests:
Code Block |
---|
mvn test -Dtest=Classname |
...