Skip to content

Instantly share code, notes, and snippets.

@abdulhadad
Created February 9, 2018 10:33
Show Gist options
  • Save abdulhadad/9f525a3ca42306d775b31f657b9de76b to your computer and use it in GitHub Desktop.
Save abdulhadad/9f525a3ca42306d775b31f657b9de76b to your computer and use it in GitHub Desktop.
Gradle proxy settings, .gradle\gradle.properties file
systemProp.http.proxyHost=www.somehost.org
systemProp.http.proxyPort=8080
systemProp.http.proxyUser=userid
systemProp.http.proxyPassword=password
systemProp.http.nonProxyHosts=*.nonproxyrepos.com|localhost
systemProp.https.proxyHost=www.somehost.org
systemProp.https.proxyPort=8080
systemProp.https.proxyUser=userid
systemProp.https.proxyPassword=password
systemProp.https.nonProxyHosts=*.nonproxyrepos.com|localhost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment