Created
October 14, 2021 08:02
-
-
Save v-thomp4/a5335445ae62a09ed41f2f99e9e80cd0 to your computer and use it in GitHub Desktop.
Gradlew behind a proxy
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
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