Build Maven Project concurrently
If you would like to run build of Maven project in concurrent mode you can use following command
mvn clean package -T Xwhere X - number of threads that will be using by Maven to build your project.
Example:
mvn clean package -X 4