How can I reuse a config property in a couple of other properties? My simplified real-world example looks like this:
myApp { host = "www.myfoohost.com" urls { url1 = host +"/b" // this... url2 = host +"/a" // ... and this do not work }}
How can I reuse a config property in a couple of other properties? My simplified real-world example looks like this:
myApp { host = "www.myfoohost.com" urls { url1 = host +"/b" // this... url2 = host +"/a" // ... and this do not work }}