<project name="Build specific targets and properties" default="noDefault"> <!-- ===================================================================== --> <!-- Run a given ${target} on all elements being built --> <!-- Add on <ant> task for each top level element being built. --> <!-- ===================================================================== --> <property name="allElementsFile" value="${builder}/allElements.xml"/> <import file="${allElementsFile}" /> <target name="allElements"> <antcall target="allElementsDelegator" /> </target> <!-- ===================================================================== --> <!-- ===================================================================== --> <target name="getBaseComponents" depends="checkLocalBase" unless="skipBase"> <get src="${eclipseBaseURL}" dest="${buildDirectory}/../temp-base.zip" /> <unzip dest="${base}" overwrite="true" src="${buildDirectory}/../temp-base.zip" /> </target> <target name="checkLocalBase"> <available file="${base}" property="skipBase" /> </target> <!-- ===================================================================== --> <!-- Check out map files from correct repository --> <!-- Replace values for mapsCheckoutTag as desired. --> <!-- ===================================================================== --> <target name="getMapFiles" depends="checkLocalMaps" unless="skipMaps"> </target> <target name="checkLocalMaps"> </target> <target name="tagMapFiles" if="tagMaps"> </target> <!-- ===================================================================== --> <target name="clean" unless="noclean"> <antcall target="allElements"> <param name="target" value="cleanElement" /> </antcall> </target> <target name="gatherLogs"> <mkdir dir="${buildDirectory}/${buildLabel}/compilelogs" /> <antcall target="allElements"> <param name="target" value="gatherLogs" /> </antcall> <unzip dest="${buildDirectory}/${buildLabel}/compilelogs" overwrite="true"> <fileset dir="${buildDirectory}/features"> <include name="**/*.log.zip" /> </fileset> </unzip> </target> <!-- ===================================================================== --> <!-- Steps to do before setup --> <!-- ===================================================================== --> <target name="preSetup"> </target> <!-- ===================================================================== --> <!-- Steps to do after setup but before starting the build proper --> <!-- ===================================================================== --> <target name="postSetup"> <echo message="${buildDirectory}"/> <mkdir dir="${buildDirectory}/plugins"/> <echo message="com.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="com.*/**"/> </copy> <echo message="ucar.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="ucar.*/**"/> </copy> <echo message="features.*/**"/> <copy todir="${buildDirectory}/features"> <fileset dir="${buildDirectory}/../../../" includes="*.feature*/**"/> </copy> <echo message="ncsa.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="ncsa.*/**"/> </copy> <echo message="org.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="org.*/**"/> </copy> <echo message="net.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="net.*/**"/> </copy> <echo message="ohd.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="ohd*/**"/> </copy> <echo message="meteolib.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="meteolib.*/**"/> </copy> <echo message="javax.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="javax.*/**"/> </copy> <echo message="gov.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="gov.*/**"/> </copy> <echo message="ogc.*/**"/> <copy todir="${buildDirectory}/plugins"> <fileset dir="${buildDirectory}/../../../" includes="ogc.*/**"/> </copy> <antcall target="getBaseComponents" /> </target> <!-- ===================================================================== --> <!-- Steps to do before fetching the build elements --> <!-- ===================================================================== --> <target name="preFetch"> </target> <!-- ===================================================================== --> <!-- Steps to do after fetching the build elements --> <!-- ===================================================================== --> <target name="postFetch"> </target> <!-- ===================================================================== --> <!-- Steps to do before generating the build scripts. --> <!-- ===================================================================== --> <target name="preGenerate"> </target> <!-- ===================================================================== --> <!-- Steps to do after generating the build scripts. --> <!-- ===================================================================== --> <target name="postGenerate"> <antcall target="clean" /> </target> <!-- ===================================================================== --> <!-- Steps to do before running the build.xmls for the elements being built. --> <!-- ===================================================================== --> <target name="preProcess"> </target> <!-- ===================================================================== --> <!-- Steps to do after running the build.xmls for the elements being built. --> <!-- ===================================================================== --> <target name="postProcess"> </target> <!-- ===================================================================== --> <!-- Steps to do before running assemble. --> <!-- ===================================================================== --> <target name="preAssemble"> </target> <!-- ===================================================================== --> <!-- Steps to do after running assemble. --> <!-- ===================================================================== --> <target name="postAssemble"> <copy todir="${buildDirectory}/../../static/common/alertviz/etc" verbose="true"> <fileset dir="${buildDirectory}/../../static/common/cave/etc"> <include name="alertViz*/**" /> <include name="monitorIcons/**" /> </fileset> </copy> <!-- Update the 32-bit linux AlertViz zip with static files --> <zip destfile="${buildDirectory}/${buildLabel}/${buildId}-linux.gtk.x86.zip" update="true"> <fileset dir="${buildDirectory}/../../static/common" excludes="cave/**" /> <fileset dir="${buildDirectory}/../../static/linux" excludes="cave/**" /> </zip> <!-- Update the 64-bit linux AlertViz zip with static files --> <zip destfile="${buildDirectory}/${buildLabel}/${buildId}-linux.gtk.x86_64.zip" update="true"> <fileset dir="${buildDirectory}/../../static/common" excludes="cave/**" /> <fileset dir="${buildDirectory}/../../static/linux" excludes="cave/**" /> </zip> <!-- Update the 32-bit win32 AlertViz zip with static files --> <zip destfile="${buildDirectory}/${buildLabel}/${buildId}-win32.win32.x86.zip" update="true"> <fileset dir="${buildDirectory}/../../static/common" excludes="cave/**" /> <fileset dir="${buildDirectory}/../../static/win32.x86" excludes="cave/**" /> </zip> <delete includeEmptyDirs="true"> <fileset dir="${buildDirectory}/../../static/common/alertviz/etc"> <include name="alertViz*/**" /> <include name="monitorIcons/**" /> </fileset> </delete> </target> <!-- ===================================================================== --> <!-- Steps to do before running package. --> <!-- ===================================================================== --> <target name="prePackage"> </target> <!-- ===================================================================== --> <!-- Steps to do after running package. --> <!-- ===================================================================== --> <target name="postPackage"> </target> <!-- ===================================================================== --> <!-- Steps to do after the build is done. --> <!-- ===================================================================== --> <target name="postBuild"> </target> <!-- ===================================================================== --> <!-- Steps to do to test the build results --> <!-- ===================================================================== --> <target name="test"> <ant antfile="${builder}/test.xml" /> </target> <target name="checkJUnitTestResults"> <taskdef name="checkJUnitReports" classname="sample.tools.TestResultCheck" classpath="${builder}/bin;${builder}/extraTools/sampletools.jar" /> <checkJUnitReports dir="${buildDirectory}/${buildLabel}/testresults" output="${buildDirectory}/junitresults.txt" /> </target> <!-- ===================================================================== --> <!-- Steps to do to publish the build results --> <!-- ===================================================================== --> <target name="publish"> </target> <!-- ===================================================================== --> <!-- Default target --> <!-- ===================================================================== --> <target name="noDefault"> <echo message="You must specify a target when invoking this file" /> </target> </project>