Maven项目构建错误:parent.relativePath指向没有本地POM

问题描述 投票:0回答:1

在stackoverflow中搜索,发现了类似的帖子,但没有具体到我的问题,因此在这里发布问题。

这是错误描述:

Project build error: Non-resolvable parent POM for com.rahul.irs:rahulBoot_SpringCore:0.0.1-SNAPSHOT: Could not find 
artifact org.springframework.boot:spring-boot-starter-parent:pom:1.5.10.RELEASE and 'parent.relativePath' points at no local POM

这是我的pom.xml的快照,我看到错误:enter image description here

enter image description here

我已将中央存储库替换为:

https://repo.spring.io/release/

代替:

http://repo.maven.apache.org/maven2/

由于我的网络阻止默认中央存储库。

Spring.io中央存储库正在我的网络中工作,但是我遇到了上述错误。尝试删除本地存储库,并尝试了Maven - >更新项目 - >

enter image description here

但没有运气。谁能告诉我这里出了什么问题?

spring maven configuration
1个回答
0
投票

eclipse使用C:\ Users \ firstname.lastname.m2文件夹中的默认maven setting.xml文件。

Check Is setting.xml in  C:\Users\firstname.lastname\.m2 Folder exist or not. 

如果setting.xml文件不是他们刚刚插入的Setting.xml。

mvn clean install spring-boot:run

您可以在maven> conf文件夹中获取setting.xml文件,例如我使用apache-maven-3.5.4文件夹名称在D:\ Drive中提取maven zip,因此我的setting.xml文件位于D:\ apache-maven-3.5 0.4 \ CONF

© www.soinside.com 2019 - 2024. All rights reserved.