문제

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

도움이 되었습니까?

해결책

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

다른 팁

You can create an alias for your shell to do it

alias mvn='mvn -T4'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top