spring boot 项目打包时报错 Execution default of goal org.springframework.boot:spring-boot-maven-plugin
报错信息: Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.4.RELEASE:repackage (default) on project chamc-dp-smart-form-common: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.4.RELEASE:repackage failed: Unable to find main class 解决方法: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> 来源: CSDN 作者: theITcat 链接: https://blog.csdn.net/theITcat/article/details/104739224