spring-boot-starter-parent not found

2022/6/18 23:20:14

本文主要是介绍spring-boot-starter-parent not found,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

项目开始的springboot版本为2.6.6

<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.6.6</version>
  <relativePath/> <!-- lookup parent from repository -->
</parent>

为了集成elasticsearch,需要更换为2.1.3版本

<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.1.3.RELEASE</version>
  <relativePath/> <!-- lookup parent from repository -->
</parent>

重新下载Maven依赖出现错误 Project 'org.springframework.boot:spring-boot-starter-parent:2.1.3.RELEASE' not found

查看本地Maven仓库发现依赖已经下载好了

解决办法

清理IDEA缓存,然后重启IDEA



这篇关于spring-boot-starter-parent not found的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程