buildframework/helium/external/helium-antlib/build.xml
branchfix
changeset 395 5ad27ebafc22
parent 217 0f5e3a7fb6af
equal deleted inserted replaced
394:b6f8d38305f2 395:5ad27ebafc22
    18 
    18 
    19 Description:
    19 Description:
    20 
    20 
    21 ============================================================================
    21 ============================================================================
    22 -->
    22 -->
    23 <project name="helium-antlib" default="build" xmlns:au="antlib:org.apache.ant.antunit">
    23 <project name="sf" default="build">
    24     <description>Helium Antlib build file.</description>
       
    25     
       
    26     <property environment="env" />
    24     <property environment="env" />
    27     
    25     <property name="helium.source.root.dir" location="${ant.file.sf}/.." />
    28     <import file="macros.ant.xml" />    
    26     <property name="sf.source.root.dir" location="${ant.file.sf}/.." />
    29     
    27     <import file="${env.BUILDER_HOME}/build.xml"/>
    30     
       
    31     <path id="subant.build.files">
       
    32         <fileset dir="." includes="core/build.xml" />
       
    33         <fileset dir="." includes="signaling/build.xml" />
       
    34         <fileset dir="." includes="*/build.xml" />
       
    35     </path>
       
    36 
       
    37     
       
    38     <target name="compile" description="Compile class files">
       
    39         <subantPreset target="compile"/>
       
    40     </target>
       
    41     
       
    42     
       
    43     <target name="jar" description="Create jar files">
       
    44         <subantPreset target="jar"/>
       
    45     </target>
       
    46     
       
    47     
       
    48     <target name="build" description="Runs compile and jar">
       
    49         <subantPreset target="build"/>
       
    50     </target>
       
    51     
       
    52     
       
    53     <target name="junit" description="Runs jUnit tests">
       
    54         <subantPreset target="junit"/>
       
    55     </target>
       
    56     
       
    57     
       
    58     <target name="unittest" description="Runs AntUnit tests">
       
    59         <subantPreset target="unittest"/>
       
    60     </target>
       
    61     
       
    62     
       
    63     <target name="test" description="Runs all tests">
       
    64         <subantPreset target="test"/>
       
    65     </target>
       
    66     
       
    67 
       
    68     <target name="clean" description="Cleans build outputs">
       
    69         <subantPreset target="clean"/>
       
    70     </target>
       
    71 
       
    72 </project>
    28 </project>
    73 
    29 
    74 
    30