Skip to content

Instantly share code, notes, and snippets.

@kdabir
Created March 12, 2012 11:01
Show Gist options
  • Save kdabir/2021168 to your computer and use it in GitHub Desktop.
Save kdabir/2021168 to your computer and use it in GitHub Desktop.
setting proxy in maven
<settings>
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>host.domain.com</host>
<port>8080</port>
<nonProxyHosts>*.domain.com</nonProxyHosts>
</proxy>
</proxies>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment