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仓库发现依赖已经下载好了

spring-boot-starter-parent not found

解决办法

清理IDEA缓存,然后重启IDEA

spring-boot-starter-parent not found

spring-boot-starter-parent not found

原创文章,作者:,如若转载,请注明出处:https://blog.ytso.com/268238.html

(0)
上一篇 2022年6月19日
下一篇 2022年6月19日

相关推荐

发表回复

登录后才能评论