Created
February 9, 2018 10:33
-
-
Save abdulhadad/9f525a3ca42306d775b31f657b9de76b to your computer and use it in GitHub Desktop.
Gradle proxy settings, .gradle\gradle.properties file
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=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