博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Maven修改镜像仓库地址
阅读量:5308 次
发布时间:2019-06-14

本文共 1698 字,大约阅读时间需要 5 分钟。

修改maven根目录下的conf文件夹中的setting.xml文件,如果你修改了默认仓库的存储位置,即.m2文件夹下没有本地仓库,但是有个setting.xml文件,那就修改这个文件就可以。

具体内容和示意图如下:

  1. <mirror>
  2.   <id>alimaven</id>
  3.   <name>aliyun maven</name>
  4.   <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  5.   <mirrorOf>central</mirrorOf>
  6. </mirror>

1040703-20161203224616802-751353776.png

Maven 中央存储库 – 

#收集的比较快的maven仓库http://maven.wso2.org/nexus/content/groups/public/http://jcenter.bintray.com/http://maven.antelink.com/content/repositories/central/http://nexus.openkoala.org/nexus/content/groups/Koala-release/http://maven.tmatesoft.com/content/groups/public/http://mavensync.zkoss.org/maven2/http://maven.springframework.org/release/
 
 
 

其他镜像地址:

oschina

 
  1. <mirror>
  2.     <id>CN</id>
  3.     <name>OSChina Central</name>                                   
  4.     <url>http://maven.oschina.net/content/groups/public/</url>
  5.     <mirrorOf>central</mirrorOf>
  6. </mirror>

repo2

 
  1. <mirror>  
  2.     <id>repo2</id>  
  3.     <mirrorOf>central</mirrorOf>  
  4.     <name>Human Readable Name for this Mirror.</name>  
  5.     <url>http://repo2.maven.org/maven2/</url>  
  6. </mirror>

net-cn 

 
  1. <mirror>  
  2.     <id>net-cn</id>  
  3.     <mirrorOf>central</mirrorOf>  
  4.     <name>Human Readable Name for this Mirror.</name>  
  5.     <url>http://maven.net.cn/content/groups/public/</url>   
  6. </mirror>

uk

 
  1. <mirror>  
  2.     <id>uk</id>  
  3.     <mirrorOf>central</mirrorOf>  
  4.     <name>Human Readable Name for this Mirror.</name>  
  5.     <url>http://uk.maven.org/maven2/</url>  
  6. </mirror>

ibiblio 

 
  1. <mirror>  
  2.     <id>ibiblio</id>  
  3.     <mirrorOf>central</mirrorOf>  
  4.     <name>Human Readable Name for this Mirror.</name>  
  5.     <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>  
  6. </mirror>

jboss

 
  1. <mirror>  
  2.     <id>jboss-public-repository-group</id>  
  3.     <mirrorOf>central</mirrorOf>  
  4.     <name>JBoss Public Repository Group</name>  
  5.     <url>http://repository.jboss.org/nexus/content/groups/public</url>  
  6. </mirror>

转载于:https://www.cnblogs.com/jeffen/p/6129890.html

你可能感兴趣的文章
JavaScript介绍
查看>>
开源网络漏洞扫描软件
查看>>
yum 命令跳过特定(指定)软件包升级方法
查看>>
创新课程管理系统数据库设计心得
查看>>
Hallo wolrd!
查看>>
16下学期进度条2
查看>>
Could not resolve view with name '***' in servlet with name 'dispatcher'
查看>>
Chapter 3 Phenomenon——12
查看>>
和小哥哥一起刷洛谷(1)
查看>>
遇麻烦,Win7+Ubuntu12.10+Archlinux12.10 +grub
查看>>
SqlBulkCopy大批量导入数据
查看>>
pandas 修改指定列中所有内容
查看>>
「 Luogu P2285 」打鼹鼠
查看>>
lua语言入门之Sublime Text设置lua的Build System
查看>>
vue.js基础
查看>>
电脑的自带图标的显示
查看>>
[转载] redis 的两种持久化方式及原理
查看>>
C++ 删除字符串的两种实现方式
查看>>
ORA-01502: 索引'P_ABCD.PK_WEB_BASE'或这类索引的分区处于不可用状态
查看>>
Java抽象类和接口的比较
查看>>