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…
Advertisement





Great…:d
What’s wrong, your last 2 post there i wrote 2 comments but it was not published. What’s the problem?
Why don’t you share your daily life with us?
nothing to share actually…
ooooo