轉自:http://blog.csdn.net/banqgg/article/details/55804569html
Maven是當前流行的項目管理工具,但官方的庫在國外常常連不上,連上也下載速度很慢。國內oschina的maven服務器很早以前就關了。今天發現阿里雲的一箇中央倉庫,親測可用apache
- <mirror>
- <id>alimaven</id>
- <mirrorOf>central</mirrorOf>
- <name>aliyun maven</name>
- <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
- </mirror>
修改${maven.home}/conf或者${user.home}/.m2文件夾下的settings.xml文件,在<mirrors>標籤下加入上述內容便可。以下:服務器
- <?xml version="1.0" encoding="UTF-8"?>
- <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
- <mirrors>
-
- <mirror>
- <id>alimaven</id>
- <mirrorOf>central</mirrorOf>
- <name>aliyun maven</name>
- <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
- </mirror>
-
-
- <mirror>
- <id>repo1</id>
- <mirrorOf>central</mirrorOf>
- <name>Human Readable Name for this Mirror.</name>
- <url>http://repo1.maven.org/maven2/</url>
- </mirror>
-
-
- <mirror>
- <id>repo2</id>
- <mirrorOf>central</mirrorOf>
- <name>Human Readable Name for this Mirror.</name>
- <url>http://repo2.maven.org/maven2/</url>
- </mirror>
- </mirrors>
- </settings>
注意:有的版本比較高的依賴包,這個阿里的倉庫也可能沒有。因此要麼用老的依賴,要麼刪掉鏡像配置,繼續去中央倉庫下載最新的依賴。app
http://blog.csdn.net/tagsT/article/details/50890816 這個鏈接裏也給了別鏡像來解決這個問題maven
http://blog.csdn.NET/a992036795/article/details/53161344工具