1. 程式人生 > >maven 下載映象檔案卡,下載pom檔案慢的問題

maven 下載映象檔案卡,下載pom檔案慢的問題

問題原因:

  maven預設的映象庫URL為 http://maven.net.cn/content/groups/public/

  由於網路原因,可能導致響應速度超級慢,或者無法效應;

解決方法:

  配置國內的映象庫;

  比如阿里雲:

    <mirror>
    <id>nexus-aliyun</id> 
    <mirrorOf>*</mirrorOf>
    <name>Nexus aliyun</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public</
url></mirror>