Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 90cd76ffeb316f6c86967a0c4b4a60f2e5993da1 (plain) (tree)

























                                                                                     
<?xml version="1.0"?>
<project name="CDT Build Bootstrap" default="main">

    <property name="build.version" value="1.2.0"/>
    <property name="build.server" value="update.eclipse.org"/>
    <property name="build.remotedir" value="/home/www/tools/cdt/updates/builds/1.2"/>
    <!--property name="build.userid" value="userid on server"/-->
    <!--property name="build.password" value="password on server"/-->

    <target name="bootstrap">
        <xslt in="manifest.xml" out="main.xml" style="main.xsl"/>
    </target>

    <target name="main" depends="bootstrap">
        <ant antfile="main.xml"/>
    </target>

    <target name="build" depends="bootstrap">
        <ant antfile="main.xml" target="build"/>
    </target>

    <target name="upload" depends="bootstrap">
        <ant antfile="main.xml" target="upload"/>
    </target>

</project>

Back to the top