maven配置代理

在maven中配置代理,主要配置setting.xml的<proxies>

  • socks5类型

      <id>socks5</id>
      <active>true</active>
      <protocol>socks5</protocol>
      <host>10.18.8.21</host>
      <port>8081</port>
      隔离内网的nexus
      <nonProxyHosts>10.16.8.29*</nonProxyHosts> 
    </proxy>
    
    
  • http类型

     <id>http</id>
     <active>true</active>
     <protocol>http</protocol>
     <host>10.18.8.21</host>
     <port>8081</port>
     <nonProxyHosts>10.16.8.29*</nonProxyHosts>
     </proxy>
    
    
    原文作者:tommyhxh
    原文地址: https://www.jianshu.com/p/922b1f49e2f2
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞