Maven修改镜像仓库地址

修改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>

Maven 中央存储库 – http://search.maven.org


#收集的比较快的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/

<mirror>
    <id>UK</id>
    <name>UK Central</name>
    <url>http://uk.maven.org/maven2</url>
    <mirrorOf>central</mirrorOf>
</mirror>

<mirror>
    <id>sonatype</id>
    <name>sonatype Central</name>
    <url>http://repository.sonatype.org/content/groups/public/</url>
    <mirrorOf>central</mirrorOf>
</mirror>

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


其他镜像地址:

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>

来自为知笔记(Wiz)

时间: 2024-10-08 12:03:01

Maven修改镜像仓库地址的相关文章

Maven修改镜像和本地仓库

修改为阿里云的镜像 <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <!--<mirrorOf>central</mirrorOf> --> <mirrorOf>*</mirrorOf&

git修改远程仓库地址

问:Coding远程仓库地址变了,本地git仓库地址如何更新为最新地址 git修改远程仓库地址 方法有三种: 1.修改命令 git remote origin set-url [url] 2.先删后加 git remote rm origingit remote add origin [url] 3.直接修改config文件 git 远程仓库管理 要参与任何一个 Git 项目的协作,必须要了解该如何管理远程仓库.远程仓库是指托管在网络上的项目仓库,可能会有好多个,其中有些你只能读,另外有些可以写

修改远程仓库地址

#修改远程仓库地址 先删后加 git remote rm origin git remote add origin git地址 修改远程地址后 必须执行一次指定将本地仓库推送到远程仓库,不能直接git push 执行以下命令 git commit -am '注释' git push -u origin master 第二种 原文地址:https://www.cnblogs.com/suruozhong/p/11841072.html

Jenkins一些简单配置 和 配置Maven国内镜像仓库

最近在阿里云申请一台云主机测试Jenkins + Maven自动化持续部署,在构建过程中经常进程自动退出:由于申请测试的免费云主机配置较低,所以每次在构建的时候会发现访问主机就会变得很卡,最后进程退出.Jenkins权威指南文中描述: 持续集成服务器会使用很多内存.构建会小号内存,多个构建并发运行也会消耗更多的内存.所有在不管你想要同事运行多少构建的情况下,均应该确保构建服务器有足够的RAM来应对.     Jenkins本身自然也需要RAM来运行,但是如果你需要支持大量的构建过程,则仅仅分配给

Maven添加镜像仓库、更改本地仓库位置

添加镜像仓库 在conf目录下的settings.xml文件的145行左右 id表示该镜像的id mirrorOf表示为哪个仓库配置镜像,central为默认的中央仓库的id,也可以使用通配符*,来匹配所有仓库 <mirrors> <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>

Maven - 配置镜像仓库

默认仓库的配置(全球中央仓库): 可以打开maven的安装目录/conf/settings.xml文件,配置镜像,找到如下一段配置,这里默认没有配置任何镜像,但是有一个被注释的配置范例: id: 镜像的唯一标识mirrorOf: 表示想对哪个仓库设置镜像,这里填入仓库的id,例如maven全球中央仓库的id为central,也可以为*,*表示所有的仓库都用这个镜像name: 镜像的描述url: 镜像的url 比如我们想配置国内的镜像仓库:<mirrors>  <mirror>   

Maven 阿里云仓库地址

https://maven.aliyun.com/mvn/view 一般使用聚合仓库(group),path是仓库地址.可点击右上角“使用指南”: 附   目前阿里云仓库的地址 https://maven.aliyun.com/repository/public https://maven.aliyun.com/nexus/content/groups/public 2个地址是等价的,只不过一个是新地址,一个是旧地址. 原文地址:https://www.cnblogs.com/chy188837

修改Maven的本地仓库地址

已经配置好的设定文件: 1.创建一个本地仓库的地址 2.修改Maven中conf目录下的settings.xml文件 在此处添加修改后的本地仓库的地址 3.打开cmd 输入mvn help:system 出现BUILD SUCCESS 则表示修改成功 附件列表

关于maven修改镜像地址 修改成阿里云的地址

关于将maven的默认地址修改成阿里云镜像地址 我们需要到maven的cofig目录下找到 settings.xml   文件 将: <mirror> <id>mirrorId</id> <mirrorOf>repositoryId</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://my.repository.com