How can I have just 1 properties file be included into all of my ant build scripts?
+3
A:
You can use the property tag for each of your ant build files and point to the same property file:
<property file="config/build.properties"/>
Robert S.
2010-08-10 22:47:30