问题描述
使用IDEA版本IntelliJ IDEA 2021.3

maven版本:3.8.1

更新依赖的时候错误提示:
maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories
解决方案
方案一:完美解决,将所有将镜像仓库从http 变成https
比如我引入的http://maven.aliyun.com/nexus/content/groups/public将期修改为
https://maven.aliyun.com/nexus/content/groups/public
如果私有仓库也是http且短时间无法改成https,建议采用方案二
方案二:临时去掉https校验
我使用的idea默认的maven,路径如下:
cd /Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven3/conf
编辑settings.xml
vim settings.xml
将下面一段注释掉
<mirror>
<id>maven-default-http-blocker</id>
<mirrorOf>external:http:*</mirrorOf>
<name>Pseudo repository to mirror external repositories initially using HTTP.</name>
<url>http://0.0.0.0/</url>
<blocked>true</blocked>
</mirror>
注释掉此段内容即不提示。
当使用IntelliJ IDEA 2021.3和Maven 3.8.1时,遇到更新依赖报错:Blocked mirror for repositories。解决方案包括将所有镜像仓库从http切换到https,或者临时取消https校验。具体操作涉及修改settings.xml文件,注释掉maven-default-http-blocker相关配置。此外,也可以考虑降级Maven版本至3.8.1以下。
7197

被折叠的 条评论
为什么被折叠?



