删除本地仓库下的依赖文件,重新下载。
淘宝镜像配了没
删除爆红的文件夹,镜像改为国内,maven版本最好低两个版本
缺少maven插件依赖 在pom中加上
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>