程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 加快maven中jar包的下載速度,mavenjar

加快maven中jar包的下載速度,mavenjar

編輯:JAVA綜合教程

加快maven中jar包的下載速度,mavenjar


  maven下載jar包的默認倉庫是http://my.repository.com/repo/path速度較慢,通過配置國內鏡像提高下載速度

1.打開eclipse--->Window--->Preferences--->選擇Maven下的User Settings 如圖找到User Settings路徑中的settings.xml文件

2.使用notepad++等文本編輯器打開文件進行修改

 1 <mirrors>
 2   <!-- mirror
 3     Specifies a repository mirror site to use instead of a given repository. The repository that
 4     this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
 5     for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
 6   <mirror>
 7     <id>mirrorId</id>
 8     <mirrorOf>repositoryId</mirrorOf>
 9     <name>Human Readable Name for this Mirror.</name>
10     <url>http://my.repository.com/repo/path</url>
11   </mirror>
12    -->
13 
14   <mirror>
15     <id>alimaven</id>
16     <name>aliyun maven</name>
17     <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
18     <mirrorOf>central</mirrorOf>
19   </mirror>
20 
21   <mirror>
22     <id>uk</id>  
23     <mirrorOf>central</mirrorOf>  
24     <name>Human Readable Name for this Mirror.</name>  
25     <url>http://uk.maven.org/maven2/</url>
26   </mirror>
27 
28    <mirror>
29     <id>CN</id>
30     <name>OSChina Central</name>
31     <url>http://maven.oschina.net/content/groups/public/</url>
32     <mirrorOf>central</mirrorOf>
33   </mirror>
34 
35   <mirror>
36     <id>nexus</id>
37     <name>internal nexus repository</name>
38     <!-- <url>http://192.168.1.100:8081/nexus/content/groups/public/</url>-->
39     <url>http://repo.maven.apache.org/maven2</url>
40     <mirrorOf>central</mirrorOf>
41   </mirror>
42 
43 </mirrors>

享受設置以後飛一般的感覺....

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved