zhaojishun 的博客

记录精彩的程序人生

生命不息,折腾不止!
  menu
43 文章
176023 浏览
0 当前访客
ღゝ◡╹)ノ❤️

Project 'org.springframework.boot:spring-boot-starter-parent:2.2.4.RELEASE' not found more...

现象

Project 'org.springframework.boot:spring-boot-starter-parent:2.2.4.RELEASE' not found less... (Ctrl+F1)
Inspection info: Inspects a Maven model for resolution problems.
image.png

原因

  • 版本较高,阿里云仓库没有

解决

  • 下调依赖版本
<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.2.2.RELEASE</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>

标题:Project 'org.springframework.boot:spring-boot-starter-parent:2.2.4.RELEASE' not found more...
作者:zhaojishun
地址:http://blog.zhaojishun.cn/articles/2020/02/03/1580724370203.html