打包报错:spring-boot-maven-plugin:2.0.6.RELEASE:repackage failed: Unable to find main class

Spring boot 执行打包操作时候,报错如下 
Execution default of goal org.springframework.boot:spring-boot-maven-plugin:XXXX RELEASE:repackage failed: Unable to find main class

pom移除下面的部分


       
           
                org.springframework.boot
                spring-boot-maven-plugin
           

       

   


解决方案: 把这个spirng boot针对所有模块的build部分移除出来,放到你自己需要打包的那个子模块里,不需要生产可执行的jar的不需要这个配置.

你可能感兴趣的:(java,springboot)