Skip to content
Snippets Groups Projects
build.xml 1.19 KiB
Newer Older
  • Learn to ignore specific revisions
  • <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>