SpringBoot Install报错
执行install或者package 报如下错误
Execution default of goal org.springframework.boot:spring-boot-maven-plugin
- 解决方案
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<phase>none</phase>
</execution>
</executions>
</plugin>