Reputation: 25852
How can I have just 1 properties file be included into all of my ant build scripts?
Upvotes: 1
Views: 215
Reputation: 86
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"/>
Upvotes: 4