scripting - How to Pass parameters for a Ant script , which is invoked via shell script? -


i need invoke ant script via shell script. let consider parameters ant script a,b,c. how can pass parameter variables? must provide parameters ant vis invoke shell script. can me on this?

do mean assigning value property command line? if so, try

-dpropertyname=itsvalue 

for example,

<project>     <target name="hi">         <property name="person" value="world"/>         <echo message="hello ${person}"/>     </target> </project> 

and then

ant -dperson="merryprankster" hi 

yields

 [echo] hello merryprankster 

Comments

Popular posts from this blog

javascript - Iterate over array and calculate average values of array-parts -

iphone - Using nested NSDictionary with Picker -

objective c - Newbie question -multiple parameters -