Re: java.lang.OutOfMemoryError: PermGen space problem

2009-04-01 Thread Wayne Fay
> When i put the following line into mvn.bat file, > set MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=512M" > > It is still giving the error. Then bump the numbers higher until it stops giving the error. Did you really need to ask this question -- isn't it obvious?? Google for what "Xmx" and "XX:MaxPermSi

RE: java.lang.OutOfMemoryError: PermGen space problem

2009-04-01 Thread SRINIVASA RAO
Hi   Thanks for repley.  When i put the following line into mvn.bat file, set MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=512M"   It is still giving the error.   regards, Sam --- On Wed, 4/1/09, Martin Gainty wrote: From: Martin Gainty Subject: RE: java.lang.OutOfMemoryError: PermGen spa

RE: java.lang.OutOfMemoryError: PermGen space problem

2009-04-01 Thread Martin Gainty
Wed, 1 Apr 2009 16:57:49 +0200 > Subject: Re: java.lang.OutOfMemoryError: PermGen space problem > From: nick.stolw...@gmail.com > To: users@maven.apache.org; srinivasv_amb...@yahoo.com > > Yes, set your maven_opts to raise the memory for your java process. > > ie. > &g

RE: java.lang.OutOfMemoryError: PermGen space problem

2009-04-01 Thread Brian E. Fox
Use the MAVEN_OPTS env to bump up the memory. The contents of this variable are passed directly to your jdk. I forget the exact syntax for increasing the permgen, but I'm sure google knows. -Original Message- From: SRINIVASA RAO [mailto:srinivasv_amb...@yahoo.com] Sent: Wednesday, April

Re: java.lang.OutOfMemoryError: PermGen space problem

2009-04-01 Thread Nick Stolwijk
Yes, set your maven_opts to raise the memory for your java process. ie. export MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=512M" Hth, Nick Stolwijk ~Java Developer~ Iprofs BV. Claus Sluterweg 125 2012 WS Haarlem www.iprofs.nl On Wed, Apr 1, 2009 at 4:51 PM, SRINIVASA RAO wrote: > Hi all, > > When