Loading...
i was compiling my source code with Maven2 it failed because maven was using -source 1.3 so after few googling i ended up with the following solution: (source)
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0</version>
<configuration>
<source>1.5 </source>
<target>1.5 </target>
</configuration>
</plugin>
</plugins>
</build>
now its working quite fine…







| www.flickr.com |
Leave a reply