0

私は Maven を初めて使用し、今プロジェクトを作成しようとすると何か問題があります。

E:\java\MavenTest>mvn archetype:generate -DgroupId=com.mycompany.app -DartifacId
=my_app -DarchetypeArtifacId = maven_archetype_quickstart -DinteractiveMode=fals
e
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.108s
[INFO] Finished at: Wed May 15 23:55:57 CST 2013
[INFO] Final Memory: 7M/76M
[INFO] ------------------------------------------------------------------------
[ERROR] The goal you specified requires a project to execute but there is no POM
 in this directory (E:\java\MavenTest). 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

pom.xml は自動的に生成されます。しかし、うまくいきません。

どんな助けでも大歓迎です。

4

1 に答える 1

1

根本的な原因は次のとおりです。

  1. にスペースがあります-DarchetypeArtifacId = maven_archetype_quickstart
  2. するarchetypeArtifacId必要がありますmaven-archetype-quickstart
  3. -DarchetypeArtifacIdスペルミスです。正しいのは-DarchetypeArtifactId

次に、次のことを試してください: -

mvn archetype:generate 
    -DgroupId=com.mycompany.app 
    -DartifactId=my_app 
    -DarchetypeGroupId=org.apache.maven.archetypes 
    -DarchetypeArtifacId=maven-archetype-quickstart 
    -DarchetypeVersion=1.1 
    -DinteractiveMode=false

上記のコマンドを 1 行で入力してください。

これが役立つことを願っています。

于 2013-05-16T02:19:51.980 に答える