That's good to know June, thank you. My GWT projects include both server (RPC) and client in the same project, so my time savings may only be because of the server (RPC) compilation code versus just the client/GWT compilation -- can you confirm your project only has GWT client code?
thanks! -D --- On Wed, 12/3/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Subject: RE: faster GWT compile times via compiler args To: [email protected] Date: Wednesday, December 3, 2008, 1:15 PM Hey Darren, I jumped at such a potentially easy way to speed up my builds, but I tried this method with a bunch of different GWT projects, and it didn't affect the build time on any of them :( Owell, at least while I wait for my 4 minute build, I have time to write you this email! June. From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Darren Hartford Sent: Monday, December 01, 2008 3:20 PM To: [email protected] Subject: faster GWT compile times via compiler args Throwing this to the group to see if this is a valid find or not, feedback and testing appreciated before we put this somewhere like the wiki -- <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> <compilerArgument>-g:none -proc:none -Xlint:none</compilerArgument> </configuration> </plugin> -g:none Do not generate any debugging information. -Xlint:none Disable all warnings not mandated by the Java Language Specification. -proc:none means that compilation takes place without annotation processing. My results showed changing GWT compile time from around 4:50 to around 3:30, quite the percentage difference. thanks, -D --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "gwt-maven" 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/gwt-maven?hl=en -~----------~----~----~----~------~----~------~--~---
