Could not find artifact org.springframework.boot:spring-boot-starter-parent:pom
时间: 2023-08-24 11:13:29 浏览: 177
初始化springboot项目的pom文件
回答: 这个错误意味着在maven仓库中找不到org.springframework.boot:spring-boot-starter-parent:pom:2.3.4或org.springframework.boot:spring-boot-starter-parent:jar:2.7.7这两个依赖。 解决这个问题的方法是在你的依赖中指定type为pom,例如:<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.7</version>
<type>pom</type>
</dependency>。 这样就能解决找不到相关jar包的问题了。
阅读全文