Where does this snippet go?
Also, Have you configured your maven-compiler plugin
in your POM to use Java5
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
--
View this message in context:
http://www.nabble.com/JDK-1.5-Problem-tp7235559p23088075.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]