1. 程式人生 > >解決maven下載慢的問題

解決maven下載慢的問題

1.將D:\apache-maven-3.2.1\conf 目錄下的settings.xml檔案複製到.m2資料夾中
2.修改settings.xml檔案, 在中新增以下程式碼:

    <!-- 阿里雲倉庫 -->
    <mirror>
       <id>alimaven</id>
       <mirrorOf>central</mirrorOf>
       <name>aliyun maven</name>
        <url>http://maven.aliyun.com/nexus/content/repositories/central/</url
>
</mirror> <!-- 中央倉庫1 --> <mirror> <id>repo1</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://repo1.maven.org/maven2/</url> </mirror> <!-- 中央倉庫2 -->
<mirror> <id>repo2</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://repo2.maven.org/maven2/</url> </mirror> </mirrors>

3.重啟eclipse