blob: eacf2d2650cf94b5c1e9d98427ecdf43cb027f02 [file] [log] [blame]
<project name="PTP" default="nightly">
<target name="hi">
<echo message="${eclipse.home}"/>
</target>
<target name="build" depends="zips,p2,test"/>
<target name="nightly" depends="tag,zips,sign,p2,test,copy,update,check"/>
<target name="testbuild" depends="zips,test,copy"/>
<target name="buildcopy" depends="zips,copy"/>
<target name="init">
<touch file="${user.home}/.cvspass" />
<tstamp/>
<!-- Update for new simultaneous release -->
<property name="eclipseRelease" value="indigo"/>
<!-- Update for new PTP branch -->
<property name="ptpBranchVersion" value="5.0.0"/>
<property name="photranBranchVersion" value="7.0.0"/>
<!-- The following properties need to be updated to reflect the version we are building against. -->
<!-- NOTE: changing any of these will require corresponding changes in org.eclipse.ptp.rdt.core.remotejars/build.xml -->
<!-- Update for new Eclipse version -->
<property name="eclipseDist" value="/home/data/httpd/download.eclipse.org/eclipse/downloads/drops/S-3.7M6-201103101119/eclipse-SDK-3.7M6-linux-gtk.tar.gz"/>
<!-- Update for new CDT version -->
<property name="cdtDist" value="/home/data/httpd/download.eclipse.org/tools/cdt/builds/8.0.0/I.I201103111317/cdt-master-8.0.0-I201103111317.zip"/>
<!-- Update for new RSE version -->
<property name="rseDist" value="/home/data/httpd/download.eclipse.org/dsdp/tm/downloads/drops/S-3.3M4-201012140730/RSE-SDK-3.3M4.zip"/>
<!-- Update for new Mylyn version -->
<property name="mylynDist" value="/home/data/httpd/download.eclipse.org/tools/mylyn/update/mylyn-3.4.3-e3.4.zip"/>
<!-- Properties below here shouldn't need to be changed -->
<property name="timestamp" value="${DSTAMP}${TSTAMP}" />
<property name="buildType" value="I" />
<property name="buildId" value="${buildType}${timestamp}"/>
<property name="forceContextQualifier" value="${timestamp}"/>
<property name="buildingOSGi" value="true"/>
<property name="buildDirectory" value="${basedir}/results"/>
<property name="releaseDir" value="/home/data/httpd/download.eclipse.org/tools/ptp/builds/${eclipseRelease}"/>
<property name="copyToDir" value="${releaseDir}/${buildType}.${buildId}"/>
<property name="testDirectory" value="${buildDirectory}/test"/>
<property name="baseLocation" value="${buildDirectory}/eclipse"/>
<property name="pde.build.scripts" value="${eclipse.pdebuild.scripts}"/>
<property name="collectingFolder" value="eclipse"/>
<property name="archivePrefix" value="eclipse"/>
<property name="zipsdir" value="${buildDirectory}/${buildType}.${buildId}"/>
<property name="masterFile" value="ptp-master-${ptpBranchVersion}-${buildId}.zip"/>
<property name="masterFeature" value="org.eclipse.ptp.master_${ptpBranchVersion}.${timestamp}.jar"/>
<property name="proxyFile" value="ptp-proxy-${ptpBranchVersion}-${buildId}.zip"/>
<property name="eclipseTest" value="org.eclipse.test_3.2.0"/>
<property name="mailto" value="g.watson@computer.org"/>
<property name="eclipseRoot" value=":pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse"/>
<property name="baseos" value="${osgi.os}"/>
<property name="basews" value="${osgi.ws}"/>
<property name="basearch" value="${osgi.arch}"/>
<property name="ptpTagBranch" value=""/>
<property name="photranTagBranch" value=""/>
<property name="tagname" value="v${timestamp}"/>
<property name="testReports" value="${zipsdir}/testReports"/>
<property name="junit-report-output" value="${testReports}"/>
<property name="jvm1.5" value="java"/>
<condition property="onWindows">
<os family="windows"/>
</condition>
<mkdir dir="${buildDirectory}"/>
<mkdir dir="${testReports}"/>
</target>
<target name="fetch" depends="init">
<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
<property name="builder" value="${basedir}/master"/>
</ant>
<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
<property name="builder" value="${basedir}/master"/>
</ant>
</target>
<target name="unzip" depends="init" unless="dontUnzip">
<untar src="${eclipseDist}" dest="${buildDirectory}" compression="gzip"/>
<unzip src="${rseDist}" dest="${buildDirectory}"/>
<unzip src="${cdtDist}" dest="${buildDirectory}/eclipse"/>
<unzip src="${mylynDist}" dest="${buildDirectory}/eclipse"/>
</target>
<target name="zips" depends="init,unzip">
<ant antfile="build.xml" dir="${pde.build.scripts}">
<property name="builder" value="${basedir}/master" />
</ant>
<concat destfile="${zipsdir}/compilelog.txt">
<fileset dir="${buildDirectory}/plugins" includes="**/*@dot.log"/>
</concat>
<loadfile property="compileLog" srcFile="${zipsdir}/compilelog.txt"/>
<condition property="hasErrors">
<contains string="${compileLog}" substring=" ERROR"/>
</condition>
<copy file="buildindex.html" tofile="${zipsdir}/index.html"/>
<replace file="${zipsdir}/index.html">
<replacefilter token="@eclipseRelease@" value="${eclipseRelease}"/>
<replacefilter token="@branchVersion@" value="${ptpBranchVersion}"/>
<replacefilter token="@buildId@" value="${buildId}"/>
</replace>
<move file="${zipsdir}/${masterFile}" todir="${buildDirectory}"/>
<unzip src="${buildDirectory}/${masterFile}" dest="${buildDirectory}/site"/>
<copy file="${buildDirectory}/eclipse/epl-v10.html" todir="${buildDirectory}/site/eclipse"/>
<copy file="${buildDirectory}/eclipse/notice.html" todir="${buildDirectory}/site/eclipse"/>
<copy file="index.html" todir="${buildDirectory}/site/eclipse"/>
<mkdir dir="${buildDirectory}/site/eclipse/web"/>
<copy todir="${buildDirectory}/site/eclipse/web">
<fileset dir="web"/>
</copy>
<copy file="buildsite.xml" tofile="${buildDirectory}/site/eclipse/site.xml"/>
<replace file="${buildDirectory}/site/eclipse/site.xml">
<replacefilter token="@ptpBranchVersion@" value="${ptpBranchVersion}"/>
<replacefilter token="@photranBranchVersion@" value="${photranBranchVersion}"/>
<replacefilter token="@timeStamp@" value="${timestamp}"/>
</replace>
<copy file="pack.properties" todir="${buildDirectory}/site/eclipse"/>
<!-- remove the master feature from the update site -->
<delete verbose="true" file="${buildDirectory}/site/eclipse/features/${masterFeature}"/>
<zip destfile="${zipsdir}/${masterFile}"
basedir="${buildDirectory}/site/eclipse"/>
<!-- generate proxy zip -->
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.aix.ppc_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.aix.ppc"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.linux.ppc_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.linux.ppc"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.linux.x86_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.linux.x86"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.linux.x86_64_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.linux.x86_64"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.macosx.ppc_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.macosx.ppc"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.macosx.x86_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.macosx.x86"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.debug.sdm_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.debug.sdm"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.proxy_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.proxy"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.utils_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.utils"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.rm.ibm.ll.proxy_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.rm.ibm.ll.proxy"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.rm.ibm.pe.proxy_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.rm.ibm.pe.proxy"/>
</copy>
<copy todir="${buildDirectory}/proxy/org.eclipse.ptp.rm.slurm.proxy_${ptpBranchVersion}.${timestamp}">
<fileset dir="${buildDirectory}/plugins/org.eclipse.ptp.rm.slurm.proxy"/>
</copy>
<zip destfile="${zipsdir}/${proxyFile}">
<fileset dir="${buildDirectory}">
<include name="proxy/**/*"/>
</fileset>
</zip>
</target>
<target name="sign" depends="init" unless="hasErrors">
<exec executable="sign">
<arg value="${buildDirectory}/${buildType}.${buildId}/${masterFile}"/>
<arg value="nomail"/>
<arg value="${buildDirectory}/signed"/>
</exec>
<waitfor maxwait="60" maxwaitunit="minute">
<available file="${buildDirectory}/signed/${masterFile}"/>
</waitfor>
<move file="${buildDirectory}/signed/${masterFile}" todir="${zipsdir}"/>
</target>
<target name="test" depends="init" unless="hasErrors"/>
<target name="check" depends="init" if="hasErrors">
<echo>BUILD FAILED</echo>
<echo>Errors were detected in the build output.</echo>
</target>
<target name="copy" depends="init" unless="hasErrors">
<mkdir dir="${copyToDir}"/>
<copy todir="${copyToDir}">
<fileset dir="${buildDirectory}/${buildType}.${buildId}"/>
</copy>
<chmod perm="g+w" dir="${copyToDir}">
<dirset dir="${copyToDir}"/>
</chmod>
<!-- Create symlink to latest build -->
<!-- NOTE: the symlink task is broken for ant versions < 1.8.1. It should be possible to -->
<!-- just use overwrite="true", but this fails for dangling links. Also, the symlink "delete" -->
<!-- action fails with a java.io.FileNotFoundException and the delete task will not remove -->
<!-- symbolic links. The only option currenly is to exec the "rm" command. -->
<exec executable="rm">
<arg value="-f"/>
<arg value="${releaseDir}/latest"/>
</exec>
<symlink link="${releaseDir}/latest" resource="${copyToDir}" overwrite="true" failonerror="false"/>
<exec executable="rm">
<arg value="-f"/>
<arg value="${releaseDir}/ptp-master-${ptpBranchVersion}-latest.zip"/>
</exec>
<symlink link="${releaseDir}/ptp-master-${ptpBranchVersion}-latest.zip" resource="${copyToDir}/${masterFile}" overwrite="true" failonerror="false"/>
<exec executable="rm">
<arg value="-f"/>
<arg value="${releaseDir}/rdt-server-unix-${ptpBranchVersion}-latest.tar"/>
</exec>
<symlink link="${releaseDir}/rdt-server-unix-${ptpBranchVersion}-latest.tar" resource="${copyToDir}/rdt-server-unix-${ptpBranchVersion}.tar" overwrite="true" failonerror="false"/>
<exec executable="rm">
<arg value="-f"/>
<arg value="${releaseDir}/rdt-server-aix-${ptpBranchVersion}-latest.tar"/>
</exec>
<symlink link="${releaseDir}/rdt-server-aix-${ptpBranchVersion}-latest.tar" resource="${copyToDir}/rdt-server-aix-${ptpBranchVersion}.tar" overwrite="true" failonerror="false"/>
</target>
<target name="p2" depends="init" unless="hasErrors">
<!-- unzip the signed master site -->
<property name="p2dir" value="${zipsdir}/p2"/>
<property name="destination" value="${zipsdir}/${masterFile}"/>
<unzip src="${destination}" dest="${p2dir}"/>
<!-- generate p2 metadata -->
<antcall target="p2.metadata.generator">
<param name="p2site" value="${p2dir}"/>
</antcall>
<!-- add download stats -->
<antcall target="download.stats">
<param name="p2site" value="${p2dir}"/>
</antcall>
<!-- zip everything back up -->
<zip destfile="${destination}"
basedir="${p2dir}"/>
<delete dir="${p2dir}"/>
</target>
<target name="p2.metadata.generator">
<echo message="Generate p2 Metadata" />
<property name="p2site" value="${zipsdir}/p2"/>
<property name="launcher" value="${basedir}/tools/org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.jar"/>
<java jar="${launcher}" fork="true" timeout="10800000" jvm="${jvm1.5}" failonerror="true" maxmemory="768m" dir="${buildDirectory}/eclipse">
<arg line="-application org.eclipse.equinox.p2.metadata.generator.EclipseGenerator" />
<arg line="-updateSite ${p2site}"/>
<arg line="-site file:${p2site}/site.xml"/>
<arg line="-metadataRepository file:${p2site}"/>
<arg line="-metadataRepositoryName PTP Update Site"/>
<arg line="-artifactRepository file:${p2site}"/>
<arg line="-artifactRepositoryName PTP Artifacts"/>
<arg line="-compress"/>
<arg line="-reusePack200Files"/>
<arg line="-noDefaultIUs"/>
<arg line="-vmargs -Xmx256M"/>
</java>
</target>
<target name = "download.stats">
<echo message="Adding download stats"/>
<unzip src="${p2dir}/artifacts.jar" dest="${p2dir}"/>
<move file="${p2dir}/artifacts.xml" tofile="${p2dir}/artifacts.xml_tmp"/>
<xslt style="${basedir}/addDownloadStats.xsl" in="${p2dir}/artifacts.xml_tmp" out="${p2dir}/artifacts.xml" />
<zip destfile="${p2dir}/artifacts.jar" basedir="${p2dir}" includes="artifacts.xml"/>
<delete file="${p2dir}/artifacts.xml"/>
<delete file="${p2dir}/artifacts.xml_tmp"/>
</target>
<target name="update" depends="init" unless="hasErrors">
<replace file="${releaseDir}/index.html">
<replacetoken><![CDATA[ <!-- add here -->]]></replacetoken>
<replacevalue><![CDATA[ <!-- add here -->
<li><a href="@buildType@.@buildId@/index.html">@buildId@</a></li>]]></replacevalue>
</replace>
<replace file="${releaseDir}/index.html">
<replacefilter token="@buildType@" value="${buildType}"/>
<replacefilter token="@buildId@" value="${buildId}"/>
</replace>
<chmod file="${releaseDir}/index.html" perm="664"/>
</target>
<target name="tagone">
<cvs cvsroot="/cvsroot/tools" command="rtag ${tagbranch} ${tagname} ${tagmodule}"/>
</target>
<target name="tag" depends="init">
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.master"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<!--Features-->
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.utils-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.core-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.remote-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.remote.remotetools-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.remote.rse-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.remotetools-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rm.ibm.ll-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rm.ibm.pe-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rm.mpich2-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rm.openmpi-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rm.slurm-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rm.pbs-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.external-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.sdm-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.pldt-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.pldt.lapi-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.pldt.upc-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.etfw-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.etfw.tau-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.etfw.ppw-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.etfw.tau.fortran-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rdt-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rdt.xlc-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rdt.remotetools-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rdt.remotejars-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.rdt.sync-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.services-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.gem-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.sci-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.sdk-feature"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<!--Plugins-->
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.utils.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.utils.extensionpoints.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.utils.file.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.utils.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.proxy.protocol"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.remote.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.remote.remotetools.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.remote.remotetools.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.remote.rse.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.remote.rse.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.remote.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.generic.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.generic.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.ibm.ll.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.ibm.ll.help"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.ibm.ll.proxy"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.ibm.ll.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.ibm.pe.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.ibm.pe.help"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.ibm.pe.proxy"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.ibm.pe.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.mpi.mpich2.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.mpi.mpich2.proxy"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.mpi.mpich2.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.mpi.openmpi.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.mpi.openmpi.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.pbs.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.pbs.core.server"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.pbs.jproxy"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.pbs.help"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.pbs.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.proxy.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.slurm.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.slurm.help"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.slurm.proxy"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.slurm.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagbranch" value="${ptpTagBranch}"/>
<param name="tagmodule" value="org.eclipse.ptp/rms/org.eclipse.ptp.rm.ui"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/debug/org.eclipse.ptp.debug.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/debug/org.eclipse.ptp.debug.sdm"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/debug/org.eclipse.ptp.debug.sdm.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/debug/org.eclipse.ptp.debug.sdm.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/debug/org.eclipse.ptp.debug.sdm.x10"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/debug/org.eclipse.ptp.debug.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/debug/org.eclipse.ptp.debug.sdm"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.proxy"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.utils"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.remotetools.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.remotetools.environment.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.remotetools.environment.generichost"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.remotetools.environment.launcher"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.remotetools.environment.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.remotetools.preferences"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.remotetools.utils"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.launch"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/doc/org.eclipse.ptp.help"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/doc/org.eclipse.ptp.doc.isv"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.common"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.help"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.lapi"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.mpi.analysis"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.mpi.analysis.cdt"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.mpi.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.openmp.analysis"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.openmp.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.openmp.ui.pv"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.upc"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/org.eclipse.ptp.pldt.wizards"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/ppw/org.eclipse.ptp.etfw.ppw"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw.tau"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw.tau.jars"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw.tau.papiselect"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw.tau.perfdmf"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw.tau.selinst"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw.tau.selinstfort"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw.toolopts"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw.feedback"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.core.remotejars"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.core.stubs"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.server.dstore"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.doc.user"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.managedbuilder.xlc.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.managedbuilder.xlupc.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.xlc"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.make.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.core.tests"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.services.test"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.sync.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.sync.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.ui.test"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.aix.ppc"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.linux.ppc"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.linux.x86"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.linux.x86_64"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.macosx.ppc"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/releng/org.eclipse.ptp.macosx.x86"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/etfw/org.eclipse.ptp.etfw.parallel"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.services.core"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.services.test"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/core/org.eclipse.ptp.services.ui"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/gem/org.eclipse.ptp.gem"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/sci/org.eclipse.ptp.sci"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/tools/gem/org.eclipse.ptp.gem.help"/>
<param name="tagbranch" value="${ptpTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran-dev-docs"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran-feature"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran-samples"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.cdtinterface"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.cdtinterface.vpg"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.cmdline"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.core"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.core.intel"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.core.vpg"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.core.vpg.preprocessor.c"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.core.vpg.preprocessor.c.tests"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.core.vpg.tests"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.core.vpg.tests.failing"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.doc.user"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.errorparsers.xlf"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.intel-feature"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.managedbuilder.core"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.managedbuilder.gnu.ui"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.managedbuilder.intel.ui"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.managedbuilder.ui"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.managedbuilder.xlf.ui"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.master"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.releng"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.ui"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.ui.vpg"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.ui.vpg.preprocessor.c"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.vpg-feature"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.photran.xlf-feature"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine-feature"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine-support"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.core"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.core.refactoring"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.core.vpg"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.core.vpg.tests"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.doc.isv"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.examples.testing"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.examples.text"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.testing.junit3"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.ui"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.ui.refactoring"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
<antcall target="tagone">
<param name="tagmodule" value="org.eclipse.ptp/photran/org.eclipse.rephraserengine.ui.vpg"/>
<param name="tagbranch" value="${photranTagBranch}"/>
</antcall>
</target>
</project>