使用maven镜像

maven 的安装目录下的 conf 文件夹下有个 settings.xml 文件,编辑该文件

在<mirrors>中插入:

<mirror>
    <id>alimaven</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    <mirrorOf>central</mirrorOf>        
</mirror>

  

<mirror>
  <id>repo2</id>
  <mirrorOf>central</mirrorOf>
  <name>Human Readable Name for this Mirror.</name>
  <url>http://repo2.maven.org/maven2/</url>
</mirror>

建议使用阿里的maven镜像

原文地址:https://www.cnblogs.com/nihaorz/p/5424782.html