国内maven镜像下载地址
时间: 2023-09-27 22:10:14 浏览: 181
一个比较全的maven镜像地址
5星 · 资源好评率100%
国内常用的 Maven 镜像下载地址有:
- 阿里云镜像:http://maven.aliyun.com/nexus/content/groups/public/
- 中央仓库镜像(中国科技大学):https://maven.aliyun.com/repository/central
- 华为云镜像:https://repo.huaweicloud.com/repository/maven/
- 清华大学镜像:https://maven.tuna.tsinghua.edu.cn/repository/maven-public/
- 网易镜像:http://maven.mirror.cqupt.edu.cn/
- 中国科学技术大学镜像:https://mirrors.ustc.edu.cn/maven/maven-3/
- 中国科学院镜像:https://maven.pkg.cas-bigdatalab.ac.cn/repository/maven-public/
- 阿里云云效镜像:https://maven.aliyun.com/mvn/guide
使用方法:将上述镜像地址配置在 Maven 的 settings.xml 文件中的 mirrors 标签下即可。例如:
```xml
<mirrors>
<mirror>
<id>aliyun</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
```
阅读全文