<!-- ========================================= Template target. Never called eXPlicitly, only used to pass calls to underlying children modules. ========================================= --> <target name="template" depends="init"> <-- Define the modules and the order in which they are executed for any given target. This means _order matters_. Any dependencies that are to be satisfied by one module for another must be declared in the order the dependencies occur. --> <echo>Executing "${target}" / target for the core module...</echo> <ant target="${target}" dir="core"/> <echo>Executing "${target}" / target for the admin module...</echo> <ant target="${target}" dir="admin"/> ...</target>