Meh, I was wrong in r841. Because the target version is 1.6, anything that tries to build against

depot with a 1.5 compiler is going to blow up with a mismatched version. Go back to 1.5 in build.xml
and pom.xml, but leave Eclipse using a 1.6 JVM. This means if anyone regenerates the m2eclipse
configuration, this will break in Eclipse again. Lame.
This commit is contained in:
Charlie Groves
2011-03-23 22:09:29 +00:00
parent 7129295906
commit 8d56a93538
3 changed files with 14 additions and 10 deletions
+2 -2
View File
@@ -86,8 +86,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.5</source>
<target>1.5</target>
<fork>true</fork>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>