Yeah, I'm not doing it in Eclipse either. I'm doing it in Jenkins with Maven. Takes anywhere from 20-50 minutes now whereas before I switched to 2.3 and started adding RequestFactory stuff, it took 6-10 minutes. It also seems to take 11GB of memory which is my all my main memory + most of the swap partition I've set up.
On Jul 13, 4:40 am, Brian <[email protected]> wrote: > I'm not using Google Plugin for Eclipse. Its simply compiling GWT with > Maven 2.1 from the command line > > On Jul 12, 7:44 pm, Jeff Larsen <[email protected]> wrote: > > > > > > > > > I put this in the issue tracker, but I wrote a groovy script to delete every > > file in the temp directory. Feel free to adapt it to however you need. > > Change the first line to the correct directory however. > > > def directory = "C:\\Documents and Settings\\jlarsen\\Local Settings\\Temp" > > //CHANGE ME > > deleteDirectory(directory) > > > public void deleteDirectory(String directory){ > > File file = new File(directory) > > file.listFiles().each{ > > println(it.getName()) > > try{ > > deleteDirectory(directory+"/"+it.getName()) > > }catch(Exception e){ > > //Do nothing. If the file is blocked, we don't care. > > } > > try{ > > it.delete() > > } > > catch(Exception e){ > > println(e) > > //do nothing, if we can't delete the file, we don't care. > > } > > } > > > } -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
