其实Maven的默认仓库是可以修改的。比如使用阿里云的镜像地址等。
修改步骤:
1、打开{M2_HOME}/conf/settings.xml文件,找到mirrors节点,修改如下代码:
<mirrors> <mirror> <id>aliyun-repos</id> <name>aliyun Releas</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors>