我使用未使用的图像下载文件,并有以下错误。总的来说,两者都有。
发布于 2020-02-19 06:10:04
您需要在pom.xml中添加代理,如下面的示例所示
<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>发布于 2020-02-19 08:01:15
我想问题是您的附件代理是mavencentral 丢弃http支持,但是mavencentral Maven Central回购代理我想您的附件现在配置不正确了,Maven Central回购代理。

https://stackoverflow.com/questions/60293846
复制相似问题