1. 程式人生 > >maven切換國內映象

maven切換國內映象

官方的源非常非常慢,沒有辦法使用,需要切換國內的源。從maven安裝目錄的conf下拷貝setting.xml到c:/使用者/username/.m2下,並修改如下內容。

  1. <mirrors>
  2.     <mirror>
  3.         <id>alimaven</id>
  4.         <mirrorOf>central</mirrorOf>
  5.         <name>aliyun maven</name>
  6.         <url>http://maven.aliyun.com/nexus/content/groups/public/
    </url>
  7.     </mirror>
  8.     <mirror>
  9.         <id>ui</id>
  10.         <mirrorOf>central</mirrorOf>
  11.         <name>Human Readable Name for this Mirror.</name>
  12.         <url>http://uk.maven.org/maven2/</url>
  13.     </mirror>
  14.     <mirror>
  15.         <
    id>jboss-public-repository-group</id>
  16.         <mirrorOf>central</mirrorOf>
  17.         <name>JBoss Public Repository Group</name>
  18.         <url>http://repository.jboss.org/nexus/content/groups/public</url>
  19.     </mirror>
  20. </mirrors>