Zombies
Zombies

Reputation: 25852

re-use properties for multiple ant build files?

How can I have just 1 properties file be included into all of my ant build scripts?

Upvotes: 1

Views: 215

Answers (1)

Robert S.
Robert S.

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

Related Questions