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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -