G
gk
Hi i have an entry in ant build.xml like this
<target name="all" depends="clean, init,compile_source, jar, ejbc,
war, ear, deploy" />
i dont want to deploy but want to execute all other target.
how do i run Ant ?
can you please tell me the proper syntax for this ?
thank you
<target name="all" depends="clean, init,compile_source, jar, ejbc,
war, ear, deploy" />
i dont want to deploy but want to execute all other target.
how do i run Ant ?
ant all -deploy // this does not work
can you please tell me the proper syntax for this ?
thank you