Para llamar a otro "target" que esté en el mismo build.xml, hacemos algo como esto
<target name="llamar_a_otro_target">
<antcall target="otro_target"/>
</target><target name="otro_target">
<!-- Aqui se hacen cosas-->
</target>Para llamar a otro "target" que esté en otro build.xml, se hace así
<target name="llamar_a_otro_target_de_otro_build">
<ant antfile="/directorio/build.xml"
</target>dir="/directorio"
target="otro_target"/>
target="otro_target"/>
Si no ponemos "target" en la llamada a ant, se ejecutará el "target" por defecto del build.xml
2 comentarios:
funciona perfectamente!!!
funciona genial!
Publicar un comentario