2

Maven ベースの Spring MVC プロジェクトがあります。任意のプロジェクトを右クリックして [Build Project] をクリックしたときに、Maven ビルドをトリガーできるようにしたいと考えています。今のところ何も起こりません。ただし、プロジェクトを右クリックし、[Run As...] > [Maven Build] をクリックして目標の「パッケージ」を指定すると、Maven ビルドがトリガーされます。

ビルド プロジェクトをクリックしただけで、Maven ビルドの実行を妨げているのは何ですか。

4

1 に答える 1

0

これは、maven が何をしたいのかわからないことを意味します。mvnゴールを指定せずに maven ビルドを実行することは、コマンド ラインから実行するようなものです。これによりエラーが発生します。

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.263s
[INFO] Finished at: Wed May 29 15:33:36 CAT 2013
[INFO] Final Memory: 2M/76M
[INFO] ------------------------------------------------------------------------
[ERROR] No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-site, site, post-site, site-deploy, pre-clean, clean, post-clean. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[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 read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/NoGoalSpecifiedException

You must specify a valid lifecycle phase or a goalという行に注意してください。

詳細については、エラー メッセージの下部にあるリンクを参照してください。また、Maven Web サイトからこのページを読みたいと思うかもしれません。

于 2013-05-29T13:46:18.160 に答える