maven 什么是Spring Boot 启动器的父pom?org.springframework.boot的名称:spring-boot-starter-parent

y53ybaqx  于 2022-12-22  发布在  Maven
关注(0)|答案(1)|浏览(145)

我遇到了maven安装问题,错误如下:

[ERROR]     Non-resolvable parent POM: Could not find artifact org.springframework.boot:spring-boot-starter-parent:pom:2.1.4.RELEASE and 'parent.relativePath' points at wrong local POM @ line 16, column 10 -> [Help 2]
org.apache.maven.model.resolution.UnresolvableModelException: Could not find artifact org.springframework.boot:spring-boot-starter-parent:pom:2.1.4.RELEASE

下面是pom.xml中父pom的条目:

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.4.RELEASE</version>
    </parent>

我和开发运营工程师联系过了,他说要检查Artifactory,看看那里有什么版本的Sping Boot Starter父版本,并使用它。
我的问题是,我在哪里/如何在Artifactory中找到它?我在“Artifactory”下查找,但它们是按名称组织的,而不是按域,所以我需要知道要查找的名称。

7cwmlq89

7cwmlq891#

当我从互联网上的存储库切换到Artifactory存储库时,也遇到了同样的问题。
1.在虚拟存储库的高级部分中禁用了“对象请求可以检索对象”配置

  1. Artifactory虚拟仓库只与本地仓库链接。因此,Artifactory只在本地仓库中搜索。从未尝试过互联网上的远程仓库。因此,我在Artifactory中创建了一个远程仓库,并将其与虚拟仓库链接
    在解决了以上两点之后,我的构建是成功的。

相关问题