java|eclipse 导入maven项目pom文件报错

今天在导入maven项目时报如下错误

Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:3.1.0 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:3.1.0 Plugin org.apache.maven.plugins:maven-resources-plugin:3.1.0 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:3.1.0

于是百度,需删除 C:\Users\JZ.m2\repository\org\apache\maven\plugins\maven-jar-plugin\3.1.1 下的 m2e-lastUpdated.properties 文件。该文件在导入或下载jar包失败时生成,如果你的maven仓库中存在该jar包,但也存在该文件时,将会导致导入项目时,该jar包不能导入项目。
但是经过尝试后,依然无法导入项目。
后将maven仓库设置为aliyun仓库解决问题。
在maven的conf目录中,修改 settings.xml 文件 在 标签中添加
nexus central nexus http://maven.aliyun.com/nexus/content/groups/public

【java|eclipse 导入maven项目pom文件报错】如果存在 默认的仓库,请修改为上述阿里云仓库。
java|eclipse 导入maven项目pom文件报错
文章图片

    推荐阅读