java - Execution of ant file within exec task -
i want run ant i.e. build.xml file in parallel execution along ongoing execution of task. using exec task achieve this. i.e. using ant run build.xml file within exec task facing following error: error: exec doesn't support nested "ant" element.
my excerpt of code is:
<if> <istrue value="${parallel.exec}" /> <then> <!-- parallel execution of task --> <mkdir dir="${buildroot.dir}/product/${build-log.dir}" /> <exec dir="../../apollo" executable="/bin/sh" spawn="true"> <ant antfile="${buildroot.dir}/product/abs-build.xml" /> </exec> </then>
we'll, <exec>
doesn't support arbitrary tasks nested elements, manual page lists.
in order run ant you'd use like
<exec dir="../../apollo" executable="/bin/sh" spawn="true"> <arg value="${ant.home}/bin/ant"/> <arg value="-f"/> <arg file="${buildroot.dir}/product/abs-build.xml" /> </exec>
Comments
Post a Comment