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
-~----------~----~----~----~------~----~------~--~---