Could not transfer artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from/to central

maven部 Could not transfer artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from/to central

问题:

maven安装完成,环境变量配置没有问题,cmd窗口运行mvn compile的时候报错如下

Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved:
Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6:
Could not transfer artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from/to central (https://repo.maven.apache.org/maven2): Connect to repo.maven.apache.org:443 [repo.maven.apache.org/151.101.52.215] failed: Connection timed out: connect -> [Help 1]

本人用了第4中办法才成功!

解决方案:

1  经红色字体可以得知,不能在https://repo.maven.apache.org/maven2这个网址下载到maven-resources-plugin:jar:2.6jar包,于是我浏览器访问了红色网址,可以访问的到。

2  我把从其他地方得到的2.6的maven-resources-plugin jar包和pom相关文件放到maven指定的目录下,可是错误依旧,尝试失败。

3  从网上搜到这种问题的解决方案之一:是在pom.xml中加入依赖如下,

org.apache.maven.plugins maven-resources-plugin 2.6

有些人用这个方法解决了问题,但是我的问题依旧;

4  开始放大招了,最后搜索到一种方法,直接把maven安装文件夹的conf文件夹下的 settings.xml文件配置如下:

复制代码

mirrorId central Human Readable Name http://repo1.maven.org/maven2/
 
alimaven 
aliyun maven 
http://central.maven.org/maven2 
central 
 
 
alimaven 
aliyun maven 
http://maven.aliyun.com/nexus/content/repositories/central/ 
central 
 





 
junit 
junit Address/ 
http://jcenter.bintray.com/ 
central 

复制代码

,最后问题得以解决。

这种问题出现的原因就是,联通的网段,无法访问maven.org网站。

你可能感兴趣的:(maven,java)