-2

コンピューターにApache Mavenをインストールする際に問題があります。解決方法がわかりません。問題の解決方法を見つける方法を誰か提案してもらえますか?

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.172s
[INFO] Finished at: Wed Sep 19 13:00:13 MSK 2012
[INFO] Final Memory: 2M/15M
[INFO] ------------------------------------------------------------------------
[ERROR] The goal you specified requires a project to execute but there is no POM
in this directory (C:\Documents and Settings\Saken). Please verify you invoked
Maven from the correct directory. -> [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/MissingProject
Exception
4

2 に答える 2

1

まず、設定してから設定する必要がありMAVEN_HOMEますset PATH=%MAVEN_HOME%\bin;%PATH%JAVA_HOMEこれPATH=%JAVA_HOME%\bin;%PATH% が Maven 設定の前提条件です。

以上でお世話になったと思います。

次に、pom.xml が必要な Maven プロジェクトを作成し、それに応じて構成します。pom.xml が存在するディレクトリに移動し、必要な構成を実行します。

于 2012-09-22T19:32:27.827 に答える
0

Mavenpom.xmlでは、作業ディレクトリに構成ファイルが必要です。実行cd c:/path/to/your/project/folderおよび実行後mvn <needed goals>

于 2012-09-19T08:37:30.563 に答える