Mon fichier de construction est
<target name="default">
<antcall target="child_target"/>
<echo> ${prop1} </echo>
</target>
<target name="child_target">
<property name="prop1" value="val1"/>
</target>
J'obtiens une erreur qui ${prop1}
n'a pas été défini. Comment définir une propriété dans la cible ?