使用命令行,加参数指定socks的代理
mvn install -DsocksProxyHost=127.0.0.1 -DsocksProxyPort=1086
或者直接使用国内镜像比如阿里,
1) 将mvn的setting.xml文件复制到.m2文件夹中
2) 修改.m2文件夹中的setting.xml文件,添加
<mirrors>
....
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
</mirrors>