Since Maven 3.8.1 http repositories are blocked.
时间: 2023-11-11 10:58:48 浏览: 248
Maven-3.8.1
5星 · 资源好评率100%
好的,您的问题是关于 Maven 3.8.1 的 http 仓库被禁用的问题。这个问题的背景是,由于安全原因,Maven 3.8.1 默认禁止使用 http 协议进行依赖包的下载,只允许使用 https 协议。这样可以保护用户的系统免受中间人攻击等安全威胁。
如果您需要使用 http 仓库,可以手动在 Maven 的配置文件中添加如下配置:
```
<repositories>
<repository>
<id>central-http</id>
<url>http://central</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
</repositories>
```
这样 Maven 就会尝试从 http://central 仓库获取依赖包了。
阅读全文