Gradle.properties
https://docs.gradle.org/current/userguide/build_environment.html
Location
Gradle looks for gradle.properties
files in these places:
- in project build dir (that is where your build script is)
- in sub-project dir
- in gradle user home (defined by the
GRADLE_USER_HOME
environment variable, which if not set defaults toUSER_HOME/.gradle
)
Proxy settings
systemProp.http.proxyHost=proxy.no
systemProp.http.proxyPort=8080
systemProp.https.proxyHost=proxy.no
systemProp.https.proxyPort=8080