IDEA自带maven报错maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories解决

Posted MateCloud微服务

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA自带maven报错maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories解决相关的知识,希望对你有一定的参考价值。

问题描述

使用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>

注释掉此段内容即不提示。

方案三:版本降至3.8.1以下版本

项目推荐

微服务项目:https://gitee.com/matevip/matecloud

以上是关于IDEA自带maven报错maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories解决的主要内容,如果未能解决你的问题,请参考以下文章

IDEA自带maven报错maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories解决

IDEA自带maven报错maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories解决

为啥idea中的maven代码没有报错但是pom显示红色;

IDEA reimport时报错Unable to import maven project: See logs for details

eclipse项目转移至IDEA与IDEA tomcat报错(idea自带tomcat版本太高)与war包部署到win服务器与idea提交git的总结

IDEA之Maven的使用