【问题标题】:Unable to locate the Javac Compiler maven sonar:sonar无法找到 Javac 编译器 maven 声纳:声纳
【发布时间】:2012-12-21 15:09:10
【问题描述】:

我正在尝试使用声纳分析一个项目。

mvn clean install -DskipTests=true

我遇到的问题:

C:\Users\user\Desktop\sepm_git\qse-sepm-ws12-02\vpm>mvn clean install -DskipTe
sts=true
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building vpm 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ vpm ---
[INFO] Deleting C:\Users\user\Desktop\sepm_git\qse-sepm-ws12-02\vpm\target
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ vpm ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\user\Desktop\sepm_git\qse-
sepm-ws12-02\vpm\src\main\resources
[INFO]
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ vpm ---
[INFO] Compiling 92 source files to C:\Users\user\Desktop\sepm_git\qse-sepm-ws
12-02\vpm\target\classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] Unable to locate the Javac Compiler in:
  C:\Program Files (x86)\Java\jre7\..\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.
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.920s
[INFO] Finished at: Fri Dec 21 15:43:57 CET 2012
[INFO] Final Memory: 4M/15M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.
3.2:compile (default-compile) on project vpm: Compilation failure
[ERROR] Unable to locate the Javac Compiler in:
[ERROR] C:\Program Files (x86)\Java\jre7\..\lib\tools.jar
[ERROR] Please ensure you are using JDK 1.4 or above and
[ERROR] not a JRE (the com.sun.tools.javac.Main class is required).
[ERROR] In most cases you can change the location of your Java
[ERROR] installation by setting the JAVA_HOME environment variable.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
ch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureExc
eption
C:\Users\user\Desktop\sepm_git\qse-sepm-ws12-02\vpm>

然而,

我的 java home var 设置为:

echo %JAVA_HOME% 
C:\Program Files (x86)\Java\jre7

在我设置的首选项下的eclipse中:

知道为什么它不起作用吗?

【问题讨论】:

    标签: java eclipse maven sdk sonarqube


    【解决方案1】:

    看起来您指向的是 Java 运行时环境 (JRE),而不是 Java 开发工具包

    [ERROR] Unable to locate the Javac Compiler in:
      C:\Program Files (x86)\Java\jre7\..\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).
    

    JRE 只包含 JVM (java.exe) 和相关库等。JDK 是它的超集,包含 JRE + 编译器 (javac.exe) 和相关工具。您通常在生产机器上安装 JRE不需要编译器,也不需要开发环境中的 JDK。

    【讨论】:

      【解决方案2】:

      将您的 JAVA_HOME 设置为 C:\Program Files (x86)\Java\jdk1.7.0_09

      【讨论】:

        【解决方案3】:

        我遇到了类似的问题,我通过在 eclipse luna 中将 JRE 设置为 C:\Program Files\Java\jdk1.7.0_51\jre 解决了这个问题。

        【讨论】:

          【解决方案4】:

          方式 1:以下步骤适用于 Eclipse:

          1. 转到窗口 -> 首选项 -> Java -> 已安装的 JRE
          2. 将现有 JRE 位置编辑为:设置 JRE Home = JAVA_HOME 或 JAVA_HOME\jre(在您的情况下,路径应为 C:\Program Files\Java\jdk1.7.0_09 或 C:\Program Files\Java\jdk1。 7.0_09\jre)
          3. 点击完成和确定按钮

          方式2:另一种设置JRE系统库的方式:

          1. 打开 Eclipse 并右键单击 Eclipse 项目属性
          2. Java 构建路径 -> 库
          3. 选择 JRE 系统库 -> 点击编辑按钮
          4. 单击“已安装的 JRE...”按钮
          5. 将 JRE 编辑为:设置 JRE Home = JAVA_HOME 或 JAVA_HOME\jre

          方式 3:以下步骤也应该可以正常工作:

          1. 转到窗口 -> 首选项 -> Java -> 已安装的 JRE
          2. 选择您正在使用的 JRE
          3. 按编辑 -> 添加外部 JAR...
          4. 浏览到 Java\jdk1.7.0_09\lib 并选择 tools.jar 并按 Enter
          5. 点击完成和确定按钮

          【讨论】:

            猜你喜欢
            • 1970-01-01
            • 2019-10-27
            • 2015-08-28
            • 2016-03-12
            • 2010-11-16
            • 2011-03-02
            • 2011-11-23
            • 2013-08-29
            • 1970-01-01
            相关资源
            最近更新 更多