Skip to content

Instantly share code, notes, and snippets.

@0guzhan
Created October 7, 2015 06:38
Show Gist options
  • Save 0guzhan/7343d755ef4b3f993ac6 to your computer and use it in GitHub Desktop.
Save 0guzhan/7343d755ef4b3f993ac6 to your computer and use it in GitHub Desktop.
gradle http/https proxy settings
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