将 maven 镜像更改为阿里云的镜像

修改 maven/conf/settings.xml 文件 中的 mirror

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

猜你喜欢

转载自www.cnblogs.com/GetcharZp/p/12403931.html