Hi All,
using ant since 2 days, i have problem executing subproject with ant
task.
Here is my main build file :
<target name="compile">
<ant dir="${MF_OPER}" target="compile" />
</target>
<target name="execute" depends="compile">
<ant dir="${MF_OPER}" target="execute"/>
</target>
and the subproject build file :
<target name="compile" depends="clean">
<javac srcdir="${src}" destdir="${build}" deprecation="true" />
</target>
<!-- execution du programme -->
<target name="execute" depends="compile">
<java classname="${prog}" fork="true">
<arg value="${filesToRead}" />
<classpath>
<pathelement location="${build}"/>
<pathelement path="${classpath}"/>
<pathelement path="${additional.path}"/>
</classpath>
</java>
</target>
Here 's what i got in return :
execute:
[java] Java Result : 255
Note that "compile" works fine, and if i execute the subproject
independently, it works to.
Can anyone help?
Thanks
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>