我是靠谱客的博主 多情汽车,最近开发中收集的这篇文章主要介绍Maven中国镜像,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

有段时间没用maven了,最近使用maven下载jar包时速度缓慢,最初以为是自己网速的问题,后来确定是访问maven的central repository端速度缓慢。在网上找到了一个maven repository的中国镜像,速度相当不错。特此收藏。


    

<mirror>

      <id>CN</id>
      <name>OSChina Central</name>                                                                                                                       
      <url>http://maven.oschina.net/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>

    </mirror>

========================================================

OSChina Maven 库使用帮助


==================其他maven仓库镜像==========================

<mirror>  
      <id>repo2</id>  
      <mirrorOf>central</mirrorOf>  
      <name>Human Readable Name for this Mirror.</name>  
      <url>http://repo2.maven.org/maven2/</url>  
</mirror>  
<mirror>  
      <id>net-cn</id>  
      <mirrorOf>central</mirrorOf>  
      <name>Human Readable Name for this Mirror.</name>  
      <url>http://maven.net.cn/content/groups/public/</url>   
</mirror>  
<mirror>  
      <id>ui</id>  
      <mirrorOf>central</mirrorOf>  
      <name>Human Readable Name for this Mirror.</name>  
     <url>http://uk.maven.org/maven2/</url>  
</mirror>  
<mirror>  
      <id>ibiblio</id>  
      <mirrorOf>central</mirrorOf>  
      <name>Human Readable Name for this Mirror.</name>  
     <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>  
</mirror>  
<mirror>  
      <id>jboss-public-repository-group</id>  
      <mirrorOf>central</mirrorOf>  
      <name>JBoss Public Repository Group</name>  
     <url>http://repository.jboss.org/nexus/content/groups/public</url>  
</mirror>

<mirror>  
      <id>JBossJBPM</id> 
    <mirrorOf>central</mirrorOf>
    <name>JBossJBPM Repository</name>
    <url>
https://repository.jboss.org/nexus/content/repositories/releases/</url>
</mirror>


转载:http://www.blogjava.net/jjshcc/archive/2015/03/17/423548.html







最近使用maven, 发现下载很慢, 发现可以修改settings.xml 来加载速度

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <!-- This is a settings.xml file retrieved from http://nexus.magnolia-cms.com/ -->
  

 <mirrors>
    <mirror>
      <id>maven.net.cn</id>
      <name>one of the central mirrors in china</name>
      <url>http://maven.oschina.net/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>
    </mirror>
  </mirrors>

 在 settings下填加mirrors节点, jar包会直接从这个站点下载了 http://maven.oschina.net/content/groups/public/

转载:http://www.tuicool.com/articles/VfuYnm

最后

以上就是多情汽车为你收集整理的Maven中国镜像的全部内容,希望文章能够帮你解决Maven中国镜像所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部