我在settings.xml文件中设置了以下代理
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<username>someusername</username>
<password>somepassword</password>
<host>some.proxy.host.com</host>
<port>5150</port>
<nonProxyHosts>localhost|127.0.0.1</nonProxyHosts>
</proxy>
但它仍然将代理应用于我的localhost,每次我必须对localhost做一些事情我必须将active更改为false。
答案 0 :(得分:5)
根据文档[1],您可以设置
<useProxy>false</useProxy>
以防止这种情况发生。
答案 1 :(得分:0)
如果您希望在localhost上部署
试试这个
<nonProxyHosts>*localhost*</nonProxyHosts>
应该有效