25 enero 2006

Llamar a otros ant desde un ant

Desde un build.xml de ant podemos hacer llamadas a otros build.xml ejecutándose en un ant aparte. También podemos llamar a otros "target" del mismo build.xml

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"
dir="/directorio"
target="otro_target"/>
</target>


Si no ponemos "target" en la llamada a ant, se ejecutará el "target" por defecto del build.xml

2 comentarios:

Anónimo dijo...

funciona perfectamente!!!

CarloSCL dijo...

funciona genial!