Al final el fichero me quedo de la siguiente forma y también funciona:
Código XML:
Ver original<ant antfile="build.xml" dir="../frontend" target="export"/>
<ant antfile="build.xml" dir="../core" target="export">
<property name="prueba" value="${entorno}"/>
</ant>
<ant antfile="build.xml" dir="../frontend" target="export"/>
<ant antfile="build.xml" dir="../web" target="deploy"/>
la propiedad "prueba" sería accesible desde el otro fichero build.xml de core haciendo por ejemplo:
Código XML:
Ver original<echo message="IMPRIMIMOS PRUEBA: ${prueba} "/>
Un saludo.