Out of Memory Error During GWT compilation

2008-09-16 Thread Bal Krishna
Hi All, I am using GWT in my application. My system is having 2GB RAM and I have around 2000 Java files to compile. During compiling the files, I am using JVM argument -Xmx1024M but my GWT compilation is failing and throwing this error. [java]Analyzing permutation #1 [java] [ERROR]

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Andrej
the reason is Out of memory; to increase the amount of memory, use the -Xmx flag at startup so try to increase memory (and/or ensure that you are _using_ -Xmx param.) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Chinmay Bajikar
Hi, I experienced the same issue while migrating from 1.4 to 1.5. We had a lot of non-parametrized collections like maps lists ( we had typeargs annotations defined for them). And compilation used to give a whole lot of warnings for the same. After changing our code to have parametrized

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Filipe Sousa
Bal Krishna wrote: Hi All, I am using GWT in my application. My system is having 2GB RAM and I have around 2000 Java files to compile. During compiling the files, I am using JVM argument -Xmx1024M but my GWT compilation is failing and throwing this error. I'm having the same problem and I