maven切换国内镜像

官方的源非常非常慢,没有办法使用,需要切换国内的源。从maven安装目录的conf下拷贝setting.xml到c:/用户/username/.m2下,并修改如下内容。


  1. <mirrors>  
  2.     <mirror>  
  3.         <id>alimavenid>  
  4.         <mirrorOf>centralmirrorOf>  
  5.         <name>aliyun mavenname>  
  6.         <url>http://maven.aliyun.com/nexus/content/groups/public/url>  
  7.     mirror>  
  8.   
  9.     <mirror>  
  10.         <id>uiid>  
  11.         <mirrorOf>centralmirrorOf>  
  12.         <name>Human Readable Name for this Mirror.name>  
  13.         <url>http://uk.maven.org/maven2/url>  
  14.     mirror>  
  15.   
  16.     <mirror>  
  17.         <id>jboss-public-repository-groupid>  
  18.         <mirrorOf>centralmirrorOf>  
  19.         <name>JBoss Public Repository Groupname>  
  20.         <url>http://repository.jboss.org/nexus/content/groups/publicurl>  
  21.     mirror>  
  22. mirrors>  

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