Skip to content
Snippets Groups Projects
build.xml 850 B
Newer Older
  • Learn to ignore specific revisions
  • Herwin van Welbergen's avatar
    Herwin van Welbergen committed
    <project name="ipaaca" default="build" basedir=".">
    
      <target name="resolve">
        <subant target="resolve" genericantfile="build.xml">
          <fileset dir="." includes="*/build.xml"/>
        </subant>
      </target>
    
    
    Herwin van Welbergen's avatar
    Herwin van Welbergen committed
      <target name="build">
        <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="compile">
        <subant target="compile" genericantfile="build.xml">
          <fileset dir="." includes="*/build.xml"/>
        </subant>
      </target>
    
      <target name="minorrelease">
        <subant target="compile" genericantfile="build.xml">
          <fileset dir="." includes="*/build.xml"/>
        </subant>
      </target>
    
    </project>