How can I use Java 1.5 features in a Spring-RCP project?
The use of Java 1.5 can be configured in the pom.xml, just add the following to the plugins-section:
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>