You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Roman Rytov <ro...@tti-telecom.com> on 2003/05/21 08:44:54 UTC

Property inheritance in a property file

In a property file I define a property X, let's say X=x,. Then I need to
define Y and Z base on the next logic: Y=x/y and Z=x/z, or in other words:
Y=${X}/y and Z=${X}/z. 

I know how to do it in a build descriptor but Is there a way to do it in a
property file? 

Roman