maven升级到3.8.1后会报如下错误:
maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories
在3.8.1后面的版本中block掉了所有HTTP协议的repositories,可以通过设置mirror中mirrorOf和blocked属性的值为false来解决
找到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>
-->
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END













