错误:
...............................
...............................
从中央下载:https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom
[信息]- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[信息]构建失败
........................................
[信息]- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[错误]插件org.apache.maven.plugins:maven-resources-plugin:2.6或其中一个依赖项无法解决:无法读取org. apache.mavene.maven.plugins .maven.plugins: maven-resourcs-plugin . jar:无法传输工件来源:http://apache.maven.maven.maven.asp.plugins:
....................................
原因:
这是网络无法访问某些网站(如:外网)的问题 。
解决方法:
配置settings.xml(自己机器上的路径:"E:\Maven\压缩包\apache-maven-3.5.4-bin\apache-maven-3.5.4\conf\settings.xml"),把里面的mirrors节点(150行左右)替换成下面的 就行了
<mirrors>
<!-- 阿里云仓库 -->
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
<!-- 中央仓库1 -->
<mirror>
<id>repo1</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo1.maven.org/maven2/</url>
</mirror>
<!-- 中央仓库2 -->
<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo2.maven.org/maven2/</url>
</mirror>
</mirrors>