Maven打包报错问题的解决-- No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format
问题描述
在使用maven执行打包操作时,出现了这样的错误:
上面的图片是网上的图,我的图片忘记截图了;
问题解决
在我们创建的项目里面的pom.xml文件里面的dependencies标签后面,新建一个build标签,
并在build标签里面放上这句代码:
<defaultGoal>compile</defaultGoal>
保存退出,然后重新运行就发现没有问题啦~~~