Maven 安装可以使用其他镜像

由于 Maven 管理的包,第1次打开工程时,IDE会自动下载所有需要的包,而这些包默认是在国外服务器,所以会很慢。
我们可以通过配置镜像来大幅提高包的下载速度,大家也可以自己去找找国内其他镜像。
配置方法:
找到maven目录下的 conf/settings.xml,添加 mirror。
有的工程自带 maven,在.mvn/wrapper/maven-wrapper.properties 中找到这个maven的路径,添加 mirror。
可以用的镜像


  alimaven
  aliyun maven
  http://maven.aliyun.com/nexus/content/groups/public/
  central



  CN
  OSChina Central
  http://maven.oschina.net/content/groups/public/
  central



  maven.net.cn
  Central
  Central Mirror in China
  http://maven.net.cn/content/groups/public



  UK
  UK Central
  http://uk.maven.org/maven2
  central

你可能感兴趣的:(maven,java,开发语言)