IDEA 提示 Plugin 'org.springframework.boot:spring-boot-maven-plugin:2.5.3' not found
时间: 2023-07-12 19:39:37 浏览: 84
这个提示表示在你的项目中使用了 Spring Boot Maven 插件,但是 Maven 没有找到该插件。可能的原因是:
1. 你的 Maven 配置文件中没有配置 Spring Boot Maven 插件的仓库地址。
2. 你的网络连接不稳定,导致 Maven 无法从远程仓库下载该插件。
你可以尝试以下解决方法:
1. 在你的 Maven 配置文件中添加 Spring Boot Maven 插件的仓库地址。
```
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
```
2. 检查你的网络连接是否正常,尝试重新运行 Maven 命令。
如果以上方法都无法解决问题,你可以尝试手动下载该插件并安装到本地 Maven 仓库中。具体方法可以参考 Maven 官方文档。
阅读全文