SpringBoot使用maven插件打包時報:[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException的處理方案
时间:2019-03-22 01:04:58
收藏:0
阅读:3024
SpringBoot使用maven插件打包時報:[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException的處理方案
方案1:創建main方法
方案2:添加如下配置
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build>
方案3:檢查一個項目中是否出現了多個main方法
原文:https://www.cnblogs.com/chenchengxuyuan/p/10575812.html
评论(0)