com.gexin.platform 依赖下载问题

发布时间:2024年01月03日

打包时报错显示:

com.gexin.platform:gexin-rp-sdk-http:pom:4.1.1.4 failed to transfer from http://0.0.0.0/

解决办法:

1、在idea中找到maven中的设置的settings.xml

2、根据路径找到settings.xml文件,添加以下内容

        <mirror>
            <id>maven-default-http-blocker</id>
            <mirrorOf>external:dummy:*</mirrorOf>
            <name>Pseudo repository to mirror external repositories initially using HTTP.</name>
            <url>http://0.0.0.0/</url>
            <blocked>true</blocked>
        </mirror>

3、从新打包就可以了

文章来源:https://blog.csdn.net/qq_35930739/article/details/135361011
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。