In my gradle.properties file I have repetition of certain values. I want to create a single key-value pair for those values and wherever those values are referenced in gradle.properties file I want to point to the key which holds its value. is it possible to do so?
Eg. gradle.properties
name=xyz
place=xyz-1234
instead i want to write like
name=xyz
place=${name}-1234
The above is just example of use case. Have tried with $name and ${name} but not of help.. Can anyone please suggest here?