How can i speed up my maven2 build? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:00:33Z http://stackoverflow.com/feeds/question/161698 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/161698/how-can-i-speed-up-my-maven2-build 2 How can i speed up my maven2 build? Sebastian 2008-10-02T10:37:23Z 2009-10-13T12:47:09Z <p>I'm using a local artifactory to proxy the request, but the build and test phases are still a bit slow. It's not the actual compile and tests that are slow, it's the "warmup" of the maven2 framework. Any ideas?</p> http://stackoverflow.com/questions/161698/how-can-i-speed-up-my-maven2-build/161710#161710 2 Answer by PintSizedCat for How can i speed up my maven2 build? PintSizedCat 2008-10-02T10:42:30Z 2008-10-02T10:42:30Z <p>I don't know what version of Maven you are using, I assume 2, but I will give what I use for Maven 1.x to speed up and make things build a tiny bit quicker.</p> <p>These will fork the junit tests into a new process (also helps when you use environment variables in tests etc and gives the tests a little more memory.</p> <pre><code>-Dmaven.junit.fork=true -Dmaven.junit.jvmargs=-Xmx512m </code></pre> <p>This forks the compilation which might speed things up for you</p> <pre><code>-Dmaven.compile.fork=true </code></pre> <p>I hope this can help a little, try it out.</p> <p>Also refer to <a href="http://www.waltercedric.com/java-j2ee-mainmenu-53/361-maven-build-system/1360-get-more-speed-with-your-maven2-build.html" rel="nofollow">get more speed with your maven2 build</a>.</p> http://stackoverflow.com/questions/161698/how-can-i-speed-up-my-maven2-build/162994#162994 2 Answer by ddimitrov for How can i speed up my maven2 build? ddimitrov 2008-10-02T15:25:01Z 2008-10-25T12:34:54Z <p>I've found that parsing reactor projects is significantly slower than single-pom projects. If your build is reactor (multi-module) and your developers are not working on all modules at the same time, you can remove the parent POM and build them separately, resolving the dependencies using the local repo. The disadvantage is that you need to install or deploy a module in order for its dependents to see the changes.</p> <p>Also, you might want to look at the new Maven 2.1 M1 which contains some significant speed improvements.</p> <p>If none of these helps, post more details about your project configuration (modules structure and plugins), command line parameters and hardware config (memory and disk). Running Maven with -X might also show where is it taking its time.</p> http://stackoverflow.com/questions/161698/how-can-i-speed-up-my-maven2-build/564495#564495 1 Answer by Roman for How can i speed up my maven2 build? Roman 2009-02-19T09:15:12Z 2009-02-19T09:15:12Z <p>There are some possibilities to optimize some of the build tasks. For example the 'clean' task can be optimized from minutes to just milliseconds using simple trick - rename 'target' folder instead of delete.</p> <p>To get details how to do it refer to <a href="http://bosy.dailydev.org/2009/02/speed-up-your-maven-build-four-times.html" rel="nofollow">Speed up Maven build</a>.</p> http://stackoverflow.com/questions/161698/how-can-i-speed-up-my-maven2-build/566726#566726 1 Answer by Sergey Aldoukhov for How can i speed up my maven2 build? Sergey Aldoukhov 2009-02-19T19:11:46Z 2009-02-19T19:11:46Z <p>I'd use locally installed Nexus.</p> http://stackoverflow.com/questions/161698/how-can-i-speed-up-my-maven2-build/1559993#1559993 0 Answer by cedric.walter for How can i speed up my maven2 build? cedric.walter 2009-10-13T12:47:09Z 2009-10-13T12:47:09Z <p>I did also write an article with some new ideas</p> <p><a href="http://www.waltercedric.com/java-j2ee-mainmenu-53/361-maven-build-system/1360-get-more-speed-with-your-maven2-build.html" rel="nofollow">http://www.waltercedric.com/java-j2ee-mainmenu-53/361-maven-build-system/1360-get-more-speed-with-your-maven2-build.html</a></p> <p>hope that help</p>