Spring Boot项目Maven打包报错(repackage failed: Unable to find main class)


解决方案:

setting.xml文件添加如下配置:


    org.springframework.boot
    spring-boot-maven-plugin
    1.5.3.RELEASE
    
        com.xx.webapps.api.main.WebappsApiBidMain
    
    
        
            
                repackage
            
        
    

参考链接:https://www.cnblogs.com/thinking-better/p/7827368.html