How to build project with Maven

To build a Maven based project, open your console, change to your project folder where pom.xml file is placed, and issue this command : mvn package This will execute the Maven “package” phase. Maven build lifecycle Maven is run by phases, read this default Maven build lifecycle article for more detail. So, when the “package” …

Read more