I have a sample from Gaelyk (called Bloogie) and it is using gradlew

Problem is that i am behid a proxy.

Read gradle docs and found this:

gradle.properties

systemProp.http.proxyHost=www.somehost.org
systemProp.http.proxyPort=8080
systemProp.http.proxyUser=userid
systemProp.http.proxyPassword=password

but i have no clue how to put this info into the wrapper gradlew

Any idea ?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

This problem with the Gradle Wrapper has been fixed with Gradle 1.0-milestone-8. Give it a shot.

link|improve this answer
You should go for 1.0-milestone-8a as there was a critical bug in 1.0-milestone-8. – Benjamin Muschko Mar 2 at 15:29
feedback

All you have to do is to create a file called gradle.properties (with the properties you mentioned above) and place it under your gradle user home directory (which defaults to USER_HOME/.gradle) OR in your project directory.

Gradle (the wrapper too!!!) automatically picks up gradle.properties files if found in the user home directory or project directories.

For more about this, read the gradle user guide, especially section 12.2. Gradle properties and system properties.

link|improve this answer
Thanks i read that and did but there is a problem with Gradlew issues.gradle.org/browse/GRADLE-1679 – Cris Jan 24 at 10:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.