[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.1.3.RELEASE:repackage (repackage) on project learn-yaohao: Execution repackage of goal org.springframework.boot:spring-boot-maven-plugin:2.1.3.RELEASE:repackage failed: Unable to find a single main class from the following candidates [com.liupei.yaohao.Test, com.liupei.yaohao.YhUtils] -> [Help 1]
1.看看maven有没有配置。
2.pom.xml中加入这个刷新开发工具
<build> <plugins> <!-- 生成主类 --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <!--<mainClass>com.xjzd.ServerEurekaApplication</mainClass>--> <includeSystemScope>true</includeSystemScope> </configuration> </plugin> </plugins> </build>