Maven Run As,Maven Build....出错

来源:互联网 发布:刚开淘宝怎么刷信誉 编辑:程序博客网 时间:2024/06/08 12:59

错误信息如下:

[INFO] Scanning for projects...[INFO] ------------------------------------------------------------------------[INFO] BUILD FAILURE[INFO] ------------------------------------------------------------------------[INFO] Total time: 0.130 s[INFO] Finished at: 2017-09-21T09:56:02+08:00[INFO] Final Memory: 5M/123M[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-clean, clean, post-clean, pre-site, site, post-site, site-deploy. -> [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

在pom.xml修改如下

在<finalName>下添加<defaultGoal>compile</defaultGoal>

<build>    <finalName>xxxx</finalName>    <defaultGoal>compile</defaultGoal></build>

参考地址:http://blog.csdn.net/yiluoak_47/article/details/16940303

阅读全文
0 0
原创粉丝点击