I want to know if it is possible to get an ant script to reference 2 different .properties files at once, and if so, how to accomplish this.

Assume that the properties contained within the two .properties files are mutually exclusive, i.e. the same property will not appear twice.

Thanks!

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

In addition to Ash answer.

You can use a different prefix attribute of property task, e.g

<property file="file1.properties" prefix="file1"/>
<property file="file2.properties" prefix="file2"/>

This way you can find out if both files have same properties and differentiate between them in your build script. For example if both files have property test, then after they are loaded with the above commands you will end up with properties named file1.test and file2.test.

link|improve this answer
This is exactly what I was looking for - can't believe I overlooked that! – bguiz Dec 17 '09 at 4:25
feedback

You should be able to import any number of properties files with multiple <property file="..."> entries in your ant script (unless there's some subtlety to your question that I've missed?). Duplicate properties are OK, since in ant properties are immutable and whoever sets the property first "wins".

See http://ant.apache.org/manual/Tasks/property.html for more details.

link|improve this answer
Thanks for the answer - unfortunately I can only check one answer. – bguiz Dec 17 '09 at 4:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.