Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility #2

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
java source to 1.5, compiler to 1.6
Michele Franzin committed Nov 25, 2010
commit 2ba250697de0970d15667a6d3c00abdaef63ad78
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -59,9 +59,9 @@ to jpeg, tiff, png and pdf are included.
<fork>true</fork>
<encoding>utf-8</encoding>
<optimize>false</optimize>
<compilerVersion>1.4</compilerVersion>
<source>1.3</source>
<target>1.3</target>
<compilerVersion>1.6</compilerVersion>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
@@ -91,11 +91,11 @@ to jpeg, tiff, png and pdf are included.
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>1.3</source>
<source>1.5</source>
<verbose>false</verbose>
<links>
<link>
http://java.sun.com/j2se/1.3.0/docs/api/
http://download.oracle.com/javase/1.5.0/docs/api/
</link>
</links>
</configuration>
@@ -131,7 +131,7 @@ to jpeg, tiff, png and pdf are included.
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>1.3</targetJdk>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
<plugin>