maven已经改成了阿里镜像,配置如下,为什么就下载这几个依赖,速度还是如此慢?
<?xml version="1.0" encoding="UTF-8"?><settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>D:\maven\repository</localRepository>
<mirrors>
<mirror>
<id>aliyunmaven</id>
<mirrorOf>central</mirrorOf>
<name>阿里云公共仓库</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
</mirrors>
</settings>
回答:
你这个依赖里面应该还依赖了别的库,如果你只是添加了 阿里这一个仓库的话,应该是不够的,再加上下面图里面的试试
以上是 maven已经改成了阿里镜像,配置如下,为什么就下载这几个依赖,速度还是如此慢? 的全部内容, 来源链接: utcz.com/p/945025.html