如何使用maven解决代理问题(IN Eclipse)

时间:2016-11-17 15:19:00

标签: eclipse maven

当我想使用Eclipse创建一个新的maven webApp项目时,我得到了这个

Error :
Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:RELEASE from any of the configured repositories.

这是我的setting.xml的一部分:

    <proxy>
      <id>optional</id>
      <active>true</active>
      <protocol>http</protocol>
      <username>myUsername</username>
      <password>myPasseword</password>
      <host>proxy.host.net</host>
      <port>80</port>
      <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
    </proxy>
  </proxies>

谢谢 这是我的配置: enter image description here enter image description here

1 个答案:

答案 0 :(得分:2)

@MadJlzz,在命令行中使用目标非常有效 但是,在日食中仍然存在问题 enter image description here