ant - Create Property file inside build.xml -
i want create .properties file dynamically, , code same should inside build.xml values , want placed in directory.
please help
you should use propertyfile ant task, instance:
<propertyfile file="my.properties"> <entry key="prop.1" value="value 1"/> <entry key="prop.2" value="value 2"/> </propertyfile>
Comments
Post a Comment