I have a Maven profile for a Java project that is activated when doing a final build on a Hudson CI server.
Currently this profile's only customization is to the Maven compiler plugin as follows:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<debug>false</debug>
<optimize>true</optimize>
</configuration>
</plugin>
Are there any other tweaks or optimizations to the Java compiler that a final build should be doing to maximize performance?