The AndroMDA Ant Task
One of the ways to use AndroMDA, is as a custom task for the famous
Apache Ant build tool. It's very easy to use, all you do, is just point
to the AndroMDA configuration file!
Example of a target invoking AndroMDA
<target name="mda">
<taskdef name="andromda" classname="org.andromda.ant.task.AndroMDAGenTask" classpathref="classpath"/>
<andromda configurationUri="${basedir}/mda/conf/andromda.xml"/>
</target>