我将 JAVA _ HOME 设置为:
C:\Program Files (x86)\Java\jdk1.6.0_18
在我运行 maven install
之后,我从 日食得到这个消息:
理由:
Unable to locate the Javac Compiler in:
C:\Program Files (x86)\Java\jre6\..\lib\tools.jar
Please ensure you are using JDK 1.4 or above and
not a JRE (the com.sun.tools.javac.Main class is required).
In most cases you can change the location of your Java
installation by setting the JAVA_HOME environment variable.
我确定这是最棘手的部分
请确保您正在使用 JDK 1.4或 以上及 不是 JRE
当我运行配置时,它被设置为 JRE6。如何将其更改为已经安装的 JDK 1.6?
我甚至试图修改插件:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<executable>C:\Program Files (x86)\Java\jdk1.6.0_18\bin</executable>
</configuration>
</plugin>
我还是会得到同样的错误。
我使用 Eclipse Maven 插件。如何在 Eclipse 中将 JRE 更改为 JDK?