8

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)?

2 Answers2

2

You can create an alias for your shell to do it

alias mvn='mvn -T4'
Archimedes Trajano
  • 35,625
  • 19
  • 175
  • 265
2

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

Community
  • 1
  • 1
Raghuram
  • 51,854
  • 11
  • 110
  • 122