運行maven報錯: [ERROR] No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format : or : [: ]: ...
Nogoalshavebeenspecifiedforthisbuild.Youmustspecifyavalidlifecyclephaseoragoalintheformat lt plugin prefix gt : lt goal gt or lt plugin group id gt : lt plugin artifact id gt : lt plugin version gt : ...
2017-06-19 15:41 1 2471 推薦指數:
運行maven報錯: [ERROR] No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format : or : [: ]: ...
問題 解決方案在安裝目錄下找到lib/maven-model-builder-3.6.0.jar選擇使用壓縮包打開,根據這個目錄META-INFmavenorg.apache.mavenmaven-model-builder找到pom.xml然后找到第一個 <build> 標簽 ...
pom.xml文件<build>標簽后面加上<defaultGoal>compile</defaultGoal>即可 ...
如圖出現如下錯誤: 解決方法如下: 1、(未測試)在pom.xml添加如下配置: 2、直接在運行的命令行上加入: 錯誤分析: 其實使用命令行時就已經指定了phase,而使用m2eclipse的【Run As】-【Maven build】時並未為其指定 ...