Maven打包报No goals have been specified for this build.异常解决
程序员文章站
2022-06-17 18:51:54
...
1.在spring Boot程序的pom.xml文件中添加如下内容
<build>
<defaultGoal>compile</defaultGoal>
</build>
然后重新打包即可正常打包