在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>