修改Maven的配置信息
maven默认的中央仓库在国外,下载依赖包的速度会很慢,需要修改成国内的镜像仓库,国内仓库使用的较多的是阿里的仓库。
仓库配置文件为 conf下的settings.xml 文件:
修改本地仓库位置
<localRepository>E:\package\repository</localRepository>
设置远程仓库为阿里的仓库地址
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
.......
/mirrors>
linux 的修改方式同上。