打开项目,更新maven,报“Some problems were encountered while processing the POMs”

前言:

好几天没有启动后端项目了,今天启动的时候不知道问啥全是爆红,所以就尝试了一下maven --clean,然后install,但是没有什么效果。

内容:

错误内容如下图所示:

[ERROR] [ERROR] Some problems were encountered while processing the POMs:

[FATAL] Non-resolvable parent POM for com.dmsdbj.itoo:exam-parent:1.0.8-SNAPSHOT: Could not find artifact com.dmsdbj.itoo:itoo-root:pom:1.0.7-SNAPSHOT and 'parent.relativePath' points at wrong local POM @ com.dmsdbj.itoo:exam-parent:1.0.8-SNAPSHOT, E:\computer learn\BS\ITOO\ITOO-NewFrontEnd\exam-backend\pom.xml, line 14, column 13

解决思路:

1、问题原因是在pom.xml中,查看一下是否有爆红的,如果有,别人那里也爆红,那就是pom.xml有问题。

2、如果有,再看一下别人的是否爆红,如果没有爆红说明 不是pom.xml的问题,那么问题应该就出在maven中,也就是本地仓库中是否引入了该引入的jar包

最终找到问题原因:

本地仓库没有引入相应的jar包,原来是setting文件出问题了。找了一个别人的setting文件,重新引入一下就OK了。

你可能感兴趣的:(maven)