1、國內訪問maven默認遠程中央鏡像特別慢
2、用阿里的鏡像替代遠程中央鏡像
3、大部分jar包都可以在阿里鏡像中找到,部分jar包在阿里鏡像中沒有,需要單獨配置鏡像
換為國內鏡像,讓你感受飛一般的感覺。
更換
找到maven的安裝目錄
修改maven配置文件settings.xml ,加入以下 鏡像
<!-- 阿里雲倉庫 -->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
如下圖所示
配置了本地倉庫
修改maven配置文件settings.xml ,修改<localRepository></localRepository>中的路徑,如下