On 19/04/10 5:36 PM, delasoul wrote:
Hello again, I have problems setting an http proxy in the gradle.properties file. I add systemProp.proxySet='true' systemProp.http.proxyHost='webproxy.siemens.at' systemProp.http.proxyPort='81'
The gradle.properties file is a regular java properties file. This means you don't need quotes around the property values. If you quote the values, like above, the quotes end up as part of the value. This means, for example, you are setting the proxy host to 'webproxy.siemens.at', including the quotes. And the port to '81'.
I would suggest removing the quotes. -- Adam Murdoch Gradle Developer http://www.gradle.org --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
