Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a maven multi-module project. The final goal wraps up all the libraries, etc., that we build in a tarball and RPM for distribution. This goal uses the maven-assembly-plugin, and it takes forever -- usually a quarter to a half of our total build time.

I think we're already telling Maven to run multithreaded (though I'm not positive, and don't know how to check). Is there any other optimization I can do to make unpacking / repacking go faster? Is it just a matter of using a beefier machine? Our project doesn't seem that big (end result is ~70-80 MB) but it takes well over a minute just for that one phase.

share|improve this question

2 Answers

up vote 1 down vote accepted

Try increasing memory by specifying MAVEN_OPTS=-Xmx[some large value]. I managed to speed it up significantly, but it is still slower than tar. If I have time I will get the sources and profile it.

share|improve this answer
I did bump my memory to 1GB, and I think it's going a bit faster -- this may just be bound by CPU speed on the build box, zipping and unzipping a whole lot of files... – Coderer Oct 28 '11 at 17:49

I've seen this happen when the maven reactor is huge, for a multi-module, multilevel project with enormous dependency hierarchy. If this is the your case, you might consider splitting your maven project to smaller ones, or suggest/ask for improvement for the maven assembly-plugin.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.