Created
March 12, 2012 11:01
-
-
Save kdabir/2021168 to your computer and use it in GitHub Desktop.
setting proxy in maven
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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