[WARNING] Could not transfer metadata org.apache.maven.plugins:maven-archetype-plugin/maven-metadata.xml from/to central (http://repo.maven.apache.org/maven2): Connection to http://repo.maven.apache.org refused
大家注意一下:当出现这个警告时,你应该猜到这是一个连接不上的问题
可把我害惨啦,我一直以为是jdk和maven版本不匹配问题。
因为Apache 的服务器不在国内,可能会因为谋而原因导致连接不上http://repo.maven.apache.org refused
所以现在就是要解决连接问题:
国内的阿里技术很厉害 为我们提供了国内的镜像
你只需要在你的 conf 文件夹下的setting文件中将对应的代码换做下面的代码。
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
完美解决:
阿里巴巴真的厉害!!!