Robert R. Sanders wrote:
> 
>  I have tried adding a gradle.properties file to my project; however it
> does not appear to be expanding properites the same way that ANT does.
> That is I have the following in my gradle.properties:
> 
> buildToolsDir=/path/to/dir
> FLEX_VERSION=4.1.0
> FLEX_HOME=${buildToolsDir}/tools/sdk-${FLEX_VERSION}
> 

There is no expansion happening within a gradle.properties file. You'd have
to move FLEX_HOME into the build script and declare it like so:

FLEX_HOME = "${buildToolsDir}/tools/sdk-${FLEX_VERSION}"

--
Peter Niederwieser 
Developer, Gradle
http://www.gradle.org
Trainer & Consultant, Gradle Inc.
http://www.gradle.biz
Creator, Spock Framework
http://spockframework.org


-- 
View this message in context: 
http://gradle.1045684.n5.nabble.com/Property-Expansion-tp3404311p3404331.html
Sent from the gradle-user mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to