Java maven国内镜像

OS: Centos66

创建maven的国内镜像settings.xml

编辑/etc/maven/settings.xml

将所有注释去掉。

增加国内的镜像

[root@gdc1000 22]# cat /etc/maven/settings.xml 
    <settings>  
      <mirrors>  
        <mirror>  
      <id>CN</id>
      <name>OSChina Central</name>                                                                                                                       
      <url>http://maven.oschina.net/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>

        </mirror>  

      </mirrors>  
    </settings>  
[root@gdc1000 22]# 


你可能感兴趣的:(Java maven国内镜像)