I have the following proxy configured in my 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>
But it still applies the proxy to my localhost, every time I need to do something with localhost, I need to change the active to false.
source share