I have a question about referencing one property from another in gradle.properties. This is somewhat similar to Apache Commons Configuration. I’m trying to do the following
gradle.properties file
prop1 = abc prop2 = $prop1/xyz
in build.gradle file println “Property 2: ${prop2}”
The expected output is
Property2: abc/xyz
Is this possible in gradle?