Skip to content

Instantly share code, notes, and snippets.

@pietrom
Created April 8, 2015 07:28
Show Gist options
  • Save pietrom/b09ec77223d41c2561e1 to your computer and use it in GitHub Desktop.
Save pietrom/b09ec77223d41c2561e1 to your computer and use it in GitHub Desktop.
Simple gradle.properties file with proxy configuration
# To be placed into <HOME_DIR>/.gradle/ directory
systemProp.http.proxyHost=XXXXX
systemProp.http.proxyPort=YYYY
systemProp.http.proxyUser=<USERNAME>
systemProp.http.proxyPassword=<PASSWORD>
systemProp.http.nonProxyHosts=<HOST01>,<HOST02>,...
systemProp.https.proxyHost=XXXXX
systemProp.https.proxyPort=YYYY
systemProp.https.proxyUser=<USERNAME>
systemProp.https.proxyPassword=<PASSWORD>
systemProp.https.nonProxyHosts=<HOST01>,<HOST02>,...
org.gradle.daemon=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment