`
eimhee
  • 浏览: 2112250 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

maven repository mirror china

 
阅读更多

最近使用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/

 

1
0
分享到:
评论
1 楼 asialee 2014-02-15  
不错,oschina确实对maven做了一些贡献

相关推荐

Global site tag (gtag.js) - Google Analytics