try the following: of course I dont know whether this is what you want, cos
Ive never heard of the 99 bottles of beer program, but it seems to me that
if
your calling a target with parameter properties, but your asking it to not
inherit any properties, then it probably wont.
<project name="dummy" basedir="." default="test">
<target name="test">
<property name="p" value="ppp"/>
<echo>p=${p}</echo>
<antcall target="test2" inheritAll="false">
<param name="p" value="aaa"/>
</antcall>
</target>
<target name="test2">
<echo>p=${p}</echo>
<antcall target="test3" inheritAll="true">
<param name="p" value="bbb"/>
</antcall>
</target>
<target name="test3">
<echo>p=${p}</echo>
</target>
</project>
-Geoff
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>