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

时间:2016-07-12 12:43:01

标签: maven maven-3

当前的WinHTTP代理设置:Windows机器中的直接访问(无代理服务器)。并在settings.xml中。但是,罐子没有下载并且低于错误。

[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:无法传输工件org.apache.maven.plugins:maven-clean-plugin:pom:2.5 from / to central  (https://repo.maven.apache.org/maven2):连接到repo.maven.apache.org:443 [repo.maven.apache.org/151.101.24.215]失败:连接超时:con nect - > [帮助1]

2 个答案:

答案 0 :(得分:10)

根据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的任何被阻止的服务器。

答案 1 :(得分:0)

如果您的计算机中安装了防病毒软件,则只需将其禁用10分钟,然后尝试执行mvn clean install即可。来自maven repo的所有依赖项都将下载。

这对我有用。谢谢!