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

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -