I have a sample from Gaelyk (called Bloogie) and it is using gradlew.
I am behind a proxy.
I\'ve read gradle docs and found this:
gradle.properties>
To add more nuances, for my case, when I have multiple gradle.properties files in both USER_HOME/.gradle and the project root, I encountered the authenticationrequired 407 error, with the bellow log:
CONNECT refused by proxy: HTTP/1.1 407 authenticationrequired
This caused my systemProp.https.proxyPassword
and systemProp.http.proxyPassword
blank in the gradle.properties file under USER_HOME/.gradle, while the gradle.properties file under the project root remained password info.
Not sure the exact reason, But when I remove one gradle.properties in the project root and keep the file in the USER_HOME/.gradle, my case is resolved.