>> Is this possible to use multiple properties file for my build,i mean 
>> rather than using a single build.properties file for my build i want 
>> to divide my property file into multiple files and want to use them 
>> depending on some condition being meet.
>> My build.xml is calling other build files .how can i refer 
>to multiple 
>> properties file in those called files.


Sure ...

<condition property="propFileName">
    ...
</condition>
<property file="${propFileName}"/>


Jan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to