maven配置國內倉庫
阿新 • • 發佈:2017-06-07
必須 pan 地址 nload onf date clas .gz apach
maven配置國內倉庫
修改conf/settings.xml文件
<mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> <mirrorOf>central</mirrorOf> </mirror>
如果無法生成索引
解決方式如下:
1、通過其它方式下載如下兩個文件:
http://maven.aliyun.com/nexus/content/repositories/central/.index/nexus-maven-repository-index.properties
http://maven.aliyun.com/nexus/content/repositories/central/.index/nexus-maven-repository-index.gz
2、找一個Apache Tomcat服務器,在其根據目錄下建立一個 /nexus/content/repositories/central/.index 的虛擬目錄(註意: 如果你使用的是XP系統, 可能無法建立.index文件夾, 必須使用虛擬目錄),把上述兩個文件拷貝至該虛擬目錄指向的目錄下。
3、編輯 c:\WINDOWS\system32\drivers\etc\hosts 文件,在文件中加入:
127.0.0.1 maven.aliyun.com
註:127.0.0.1 為步驟2的Apache Tomcat服務器IP地址。
4、在Eclipse中,打開 Maven Repositories 面板,
在 Global Repositories --> central 項上,點右鍵,Rebuild Index 即可。
5、移除之前在 hosts 文件中添加的內容。
6、(可選)把Properties中Maven項的 Download repository index updates on starup 選項去除。
maven配置國內倉庫