gpt4 book ai didi

maven - Maven依赖项没有下载,代理问题?

转载 作者:行者123 更新时间:2023-12-04 13:22:24 25 4
gpt4 key购买 nike

当前的WinHTTP代理设置:Windows计算机中的直接访问(无代理服务器)。并在settings.xml中为。但是,jar无法下载且未出现错误。

[ERROR] Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor fo

r org.apache.maven.plugins:maven-clean-plugin:jar:2.5:无法从/到中央传输 Artifact org.apache.maven.plugins:maven-clean-plugin:pom:2.5
( https://repo.maven.apache.org/maven2):连接到repo.maven.apache.org:443 [repo.maven.apache.org/151.101.24.215]失败:连接超时:con
nect-> [帮助1]

最佳答案

根据Maven文档,我们必须添加一些settings.xml,并在其中设置Guide to proxies进行设置。

<settings>
<proxies>
<proxy>
<id>example-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy.example.com</host>
<port>8080</port>
<username>proxyuser</username>
<password>somepassword</password>
<nonProxyHosts>www.google.com|*.example.com</nonProxyHosts>
</proxy>
</proxies>
.
.
</settings>

快速下载依赖项的另一种方法如下
mvn clean install -DproxySet=true -DproxyHost=myproxy.com -DproxyPort=YourPort 

第二个对我来说很好。希望以上解决方案中的至少一种对您有用,希望您的网络没有来自maven repo的任何阻止的服务器。

关于maven - Maven依赖项没有下载,代理问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38329243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com