Created
October 7, 2015 06:38
-
-
Save 0guzhan/7343d755ef4b3f993ac6 to your computer and use it in GitHub Desktop.
gradle http/https proxy settings
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
systemProp.http.proxyHost=proxyhost | |
systemProp.http.proxyPort=80 | |
systemProp.http.proxyUser=username | |
systemProp.http.proxyPassword=password | |
systemProp.http.nonProxyHosts=localhost | |
systemProp.https.proxyHost=proxyhost | |
systemProp.https.proxyPort=80 | |
systemProp.https.proxyUser=username | |
systemProp.https.proxyPassword=password | |
systemProp.https.nonProxyHosts=localhost |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment