Skip to content
Snippets Groups Projects
Forked from Social Cognitive Systems / ipaaca
395 commits behind the upstream repository.
build.xml 1.19 KiB
<project name="ipaacalib" default="build" basedir=".">
  <target name="resolve">
    <subant target="resolve" genericantfile="build.xml">
      <fileset dir="." includes="*/build.xml"/>
    </subant>
  </target>

  <target name="build" depends="-pre-compilation">
    <subant target="build" genericantfile="build.xml">
      <fileset dir="." includes="*/build.xml"/>
    </subant>
  </target>

  <target name="clean">
    <subant target="clean" genericantfile="build.xml">
      <fileset dir="." includes="*/build.xml"/>
    </subant>
  </target>

  <target name="-pre-compilation">
    <subant target="-pre-compilation" genericantfile="build.xml">
      <fileset dir="." includes="*/build.xml"/>
    </subant>
  </target>

  <target name="compile" depends="-pre-compilation">
    <subant target="compile" genericantfile="build.xml">
      <fileset dir="." includes="*/build.xml"/>
    </subant>
  </target>

  <target name="dist">
    <subant target="dist" genericantfile="build.xml">
      <fileset dir="." includes="*/build.xml"/>
    </subant>
  </target>

  <target name="jar">
    <subant target="jar" genericantfile="build.xml">
      <fileset dir="." includes="*/build.xml"/>
    </subant>
  </target>

</project>