Idea 2021.3 Maven 3.8.1 报错 Blocked mirror for repositories 解决

Blocked mirror for repositories 问题是由于Maven3.8.1 开始默认在配置文件中block了Http连接。
idea解决此问题有如下方案

  1. 替换使用的Maven为3.6.3版本https://dlcdn.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip
  2. 当idea加载外部配置文件时会优先加载安装目录下\plugins\maven\lib\maven3\conf文件夹内的settings.xml,注释该文件中

      maven-default-http-blocker
      external:http:*
      Pseudo repository to mirror external repositories initially using HTTP.
      http://0.0.0.0/
      true
    

即可生效

你可能感兴趣的:(intellij-idea,maven,java)