Showing posts with label Java heap. Show all posts
Showing posts with label Java heap. Show all posts

Monday, June 20, 2011

How to Increase Java Heap Memory for Maven 2

The heap size of the JVM used by Maven can be changed using the environment variable MAVEN_OPTS. 


On Windows : 

Update build.bat with following command
set MAVEN_OPTS=-Xmx512m


On Linux (bash shell) :

Update build.sh with following command
export MAVEN_OPTS=-Xmx512m