Christian Cabanero wrote:
Is there a way to get the Maven java plugin to work with JDK 1.5 beta?
I have 1.5 set as my default java installation and also overrode the
following property in my project.properties file
maven.compile.source = 1.5
but what I got was:
java:compile:
[echo] Compiling to C:\cygwin\src\redpoint\aparigraha/target/classes
[javac] Compiling 65 source files to
C:\cygwin\src\redpoint\aparigraha\target\classes
javac: source release 1.5 requires target release 1.5
however when I use javac manually and specify -source 1.5 it works fine.
Am I doing something wrong?
You need to add:
maven.compile.target=1.5
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]