maven 設定阿里雲倉庫映象
阿新 • • 發佈:2019-02-06
進入maven安裝目錄,如:
C:\Program Files\JetBrains\IntelliJ IDEA 2018.2.2\plugins\maven\lib\maven3\conf\settings.xml 在mirrors節點下新增:
<!-- 阿里雲倉庫 --> <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>
其他方法:
使用阿里雲maven倉庫
一、找到settings.xml存放位置,開啟選單File>Settings…
二、複製settings.xml到以上目錄
例如檔案位置D:\Program Files\apache-maven-3.3.3\conf\settings.xml
複製到:C:\Users\username\.m2\目錄中
文字方式開啟settings.xml,找到<mirrors></mirrors>節點,放入以下內容:
<mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror>