1. 程式人生 > >在pom.xml中設定maven的映象為國內映象

在pom.xml中設定maven的映象為國內映象

總所周知的是國外的maven映象下載速度巨慢,對於新手學習maven來說,這是一個很痛苦的過程。
國內阿里雲的maven倉庫速度很快,下載速度槓槓的。
先說一下我的個人習慣,我有重灌系統的習慣,會把一下不需要安裝的軟體備份下來,maven就是一個例子,

下載好maven之後,在裡面的setting.xml中的<mirrors>節點下新增的內容:

<mirrors>
    <!-- mirror
     | Specifies a repository mirror site to use instead of a given repository. The repository that
     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
     |
    <mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
     <mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>        
    </mirror>
  </mirrors>
有了這個之後,如果你是使用的IDEA(要配置maven的路徑),下載的時候會自動去阿里雲的maven倉庫下載,在eclipse中(也要配置maven的路徑)也會這樣,但是在eclipse中好像這樣設定之後.m2資料夾下的repository資料夾就不起作用了,它會重新去下載依賴放到另一個位置,這個位置我不知道是哪裡,總的來說挺麻煩的,還要在settings裡面設定repository的路徑。