> 1: Can we have more than one property file defined in ANT's build.xml
yes
<property file="one.properties"/>
<property file="two.properties"/>
> 2: If there are two properties file and let's say I have one property
> defined in these two property file with different values then
build.xml
> will pick up which value for this property.
Properties are immutable, so the propfile which was loaded first, wins.
So a common pattern is
<property file="${user.name}.properties"/>
<property file="build.properties"/>
Jan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]