Could not find artifact org.springframework.boot:spring-boot-starter-parent:pom:3.1.3.RELEASE in aliyunmaven
时间: 2023-11-05 13:56:37 浏览: 130
搭建springboot项目的 pom.xml配置,只需要创建maven项目把pom替换即可
5星 · 资源好评率100%
根据提供的引用内容,您遇到的问题是在阿里云Maven仓库中找不到org.springframework.boot:spring-boot-starter-parent:pom:3.1.3.RELEASE的artifact。解决这个问题的方法是在您的依赖中指定type为pom,如下所示:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.3.RELEASE</version>
<type>pom</type>
</dependency>
```
这样可以确保Maven正确识别该artifact并下载相应的pom文件。
阅读全文