Hi,
I've configured my pom.xml to use jdk 1.4.2, but it compiles with
another JDK.
Here is the maven-compiler-plugin configuration that I use:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<executable>C:/jdk1.4.2/bin/javac</executable>
<compilerVersion>1.4</compilerVersion>
<fork>true</fork>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
Can you tell me what is wrong?
Thanks!
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]