《Maven官方指南》配置代理

原文链接

配置代理

你可以陪住一个代理来使用一些或者全部Maven需要的http请求。用户名和密码需要如果你代理需要基础的授权(注意最新发布可能支持存储你的密码在一个安全密钥 – 与此同时,请确定你的settings.xml文件(总是使用${user.home}/.m2/settings.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>

请注意当前的NTLM代理是不支持正如它们没有经过测试。你可以使用相关的系统属性在JDK 1.4以上的环境操作。

资源

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/99917.html

(0)
上一篇 2021年8月21日
下一篇 2021年8月21日

相关推荐

发表回复

登录后才能评论