Could not transfer artifact org.apache.maven.plugins:maven-source-plugin:pom:2.1.2 from/to

在eclipse里运行maven install时,老是报这个错,把本地仓库org\apache\maven\plugins\maven-source-plugin删除也不行,最后用下面的方式解决

1、批量删除maven本地仓库下载失败的jar
找到本地仓库所在目录,在命令行,输入:(cmd下)
for /r %i in (*.lastUpdated) do del %i
2、重新下载所有maven未下载成功的jar包
打开cmd,进入命令提示符
导航到项目目录下,保证和项目的pom.xml同目录
执行命令
mvn clean install -U
等待执行完成,然后就可以了

 

参考:https://blog.csdn.net/ou_yu_chen/article/details/82999577

你可能感兴趣的:(Could not transfer artifact org.apache.maven.plugins:maven-source-plugin:pom:2.1.2 from/to)