<?xml version="1.0"?>
 
<!-- ======================================================== -->
<!--        Main WOLips feature Ant build file                -->
<!-- Serves as a facade for different helper build files.     -->
<!-- ======================================================== -->
<project name="org.objectstyle.wolips.feature" default="" basedir=".">

    <property file="default.properties"/>

    <!-- ========================================== -->
    <!-- Build copy resources.                      -->
    <!-- ========================================== -->
    <target name="copy.resources">
        <ant dir="." antfile="../../../../${project.buildscripts.dir}/feature-project.xml" target="copy.resources">
            <property name="param.plugin.dir" value="."/>
            <property name="param.build.output.build.dir" value="../../../../${build.output.build.dir}"/>
            <property name="param.feature.name" value="${feature.name}"/>
	    </ant>
    </target>

    <!-- ========================================== -->
    <!-- Build all.                                 -->
    <!-- ========================================== -->
    <target name="all" depends="copy.resources">
    </target>
    
    <!-- ========================================== -->
    <!-- Build dist.                                -->
    <!-- ========================================== -->
    <target name="dist">
        <ant dir="." antfile="../../../../${project.buildscripts.dir}/feature-project.xml" target="dist">
            <property name="param.feature.name" value="${feature.name}"/>
            <property name="param.build.output.build.dir" value="../../../../${build.output.build.dir}"/>
            <property name="param.build.dist.build.dir" value="../../../../${build.output.dist.dir}"/>
	    </ant>
    </target>

</project>
