Andrew Yakovenko
Andrew Yakovenko

Reputation: 141

Maven 3 parallel builds profile

Is there a way to configure parallel build in Maven 3 without adding any command line options (e.g. configure a profile in settings.xml)?

Upvotes: 8

Views: 2917

Answers (2)

Archimedes Trajano
Archimedes Trajano

Reputation: 41368

You can create an alias for your shell to do it

alias mvn='mvn -T4'

Upvotes: 2

Raghuram
Raghuram

Reputation: 52655

Not from the maven documentation on parallel builds.

Couple of related links (though not an answer to the question) are jira issue related to this and a stackoverflow discussion

Upvotes: 2

Related Questions