Hi.

I have no idea what's going on here at all; but: I saw you asked about Java 5. Are you sure it's not just because of a compiler configuration problem? When I want to work on JDK 5 projects, I have had to explicitly set the source AND target (which is a bug...) version to 5 in the compiler plugin configuration. This is my boilerplalte:

       <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
           <configuration>
               <compilerVersion>5</compilerVersion>
               <source>5</source>
<!--
                 - This should not be needed, but Maven throws an exception
                 - if this is not specified when source=5:
                -->
               <target>5</target>
               <fork>true</fork>
               <showDeprecation>true</showDeprecation>
               <showWarnings>true</showWarnings>
               <compilerArguments>
                   <Xlint />
               </compilerArguments>
           </configuration>
       </plugin>

Just in case it's useful...

Good luck,
Steev Coco.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to