task-keeper 0.30.5

Task keeper to manage tasks from different task runners
<project name="MyProject" default="dist" basedir=".">
    <description>
        simple example build file
    </description>
    <!-- set global properties for this build -->
    <property name="src" location="src"/>
    <property name="build" location="build"/>
    <property name="dist" location="dist"/>

    <target name="hello-ant">
        <echo>Hello Apache Ant</echo>
    </target>

    <target name="init">
       <echo>init</echo>
    </target>

    <target name="compile" depends="init"
            description="compile the source">
      <echo>compile</echo>
    </target>

    <target name="dist" depends="compile"
            description="generate the distribution">
        <echo>dist</echo>
    </target>

    <target name="clean"
            description="clean up">
       <echo>clean</echo>
    </target>
</project>