1

ソナーでプロジェクトを分析しようとしています。

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ホーム変数は次のように設定されています:

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

私が設定した設定の下の日食で:

ここに画像の説明を入力してください

なぜそれが機能しないのか考えてみてください。

4

4 に答える 4

3

Java Development Kitではなく、Javaランタイム環境(JRE)を指しているようです。

[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。

于 2012-12-21T15:10:27.540 に答える
0

JAVA_HOMEをC:\ Program Files(x86)\ Java\jdk1.7.0_09に設定します

于 2012-12-21T15:11:35.323 に答える
0

同様の問題が発生し、Eclipse lunaでJREをC:\ Program Files \ Java \ jdk1.7.0_51\jreに設定することで解決しました。

于 2014-07-18T14:31:05.010 に答える
0

方法1:次の手順はEclipseで機能します。

  1. 「ウィンドウ」->「設定」->「Java」->「インストールされたJRE」に移動します
  2. 既存のJREの場所を次のように編集します。JREHome=JAVA_HOMEまたはJAVA_HOME\jreを設定します(この場合、パスはC:\ Program Files \ Java \ jdk1.7.0_09またはC:\ Program Files \ Java \jdk1.7.0_09\である必要があります。 jre)
  3. [完了してOK]ボタンをクリックします

方法2:JREシステムライブラリを設定する別の方法:

  1. Eclipseを開き、Eclipseプロジェクトのプロパティを右クリックします
  2. Javaビルドパス->ライブラリ
  3. [JREシステムライブラリ]を選択し、[編集]ボタンをクリックします
  4. 「インストールされたJRE...」ボタンをクリックします
  5. JREを次のように編集します。JREホーム=JAVA_HOMEまたはJAVA_HOME\jreを設定します。

方法3:次の手順もうまくいくはずです:

  1. 「ウィンドウ」->「設定」->「Java」->「インストールされたJRE」に移動します
  2. 使用しているJREを選択します
  3. 「編集」->「外部JARの追加...」を押します。
  4. Java \ jdk1.7.0_09 \ libを参照し、tools.jarを選択して、Enterキーを押します。
  5. [完了してOK]ボタンをクリックします
于 2015-04-29T13:13:47.147 に答える