国外的maven下载速度堪忧,大部分国内网络访问都很慢
国内的阿里云同样提供了maven的文件镜像
使用:
1.在maven的setting.xml加入下段代码即可使用阿里云的maven镜像

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

 

相关文章:

  • 2021-12-25
  • 2021-09-20
  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
  • 2022-02-22
  • 2022-12-23
  • 2021-07-07
猜你喜欢
  • 2022-12-23
  • 2021-11-28
  • 2022-01-01
  • 2022-01-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案