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

I get

java.lang.OutOfMemoryError: Java heap space

when I try to compile an aspecj project. The project is a maven 2 project and I have set maven-compiler-plugin to use up to 2048m memory. But this error just doesn't go away. What else can I do to increase the heap space?

share|improve this question

1 Answer

up vote 1 down vote accepted

You could try tips specified here, including

set MAVEN_OPTS=Xmx1024M
share|improve this answer
2  
Actually I put this: set MAVEN_OPTS=-Xmx1024m – newguy Nov 2 '10 at 6:10
exactly, -D sets system properties, not vm args – Sean Patrick Floyd Nov 3 '10 at 9:00

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.