欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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>

然后重新打包即可正常打包