Skip to content

Instantly share code, notes, and snippets.

@v-thomp4
Created October 14, 2021 08:02
Show Gist options
  • Save v-thomp4/a5335445ae62a09ed41f2f99e9e80cd0 to your computer and use it in GitHub Desktop.
Save v-thomp4/a5335445ae62a09ed41f2f99e9e80cd0 to your computer and use it in GitHub Desktop.
Gradlew behind a proxy
gradle.properties
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.http.nonProxyHosts=*.nonproxyrepos.com|localhost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment