Is there  a reason why the maven compile target is 1.5?
On os-x 10.6.5 it's not a happy camper

Caused by: org.apache.maven.plugin.CompilationFailureException: Compilation
failure
Failure executing javac, but could not parse the error:
javac: source release 1.6 requires target release 1.6

But the following makes it purr again

patrick-olearys-MacBook-Air:sis pjaol$ svn diff
Index: sis-parent/pom.xml
===================================================================
--- sis-parent/pom.xml (revision 1054518)
+++ sis-parent/pom.xml (working copy)
@@ -182,7 +182,7 @@

   <properties>
     <maven.compile.source>1.6</maven.compile.source>
-    <maven.compile.target>1.5</maven.compile.target>
+    <maven.compile.target>1.6</maven.compile.target>
     <sis.version>${project.version}</sis.version>
   </properties>

Reply via email to