cdt/cdt_6_0_x/org.eclipse.cdt.releng/build.xml
author cawthron
Wed, 04 Nov 2009 15:12:39 -0600
branchRCL_2_4
changeset 107 50bdf9ce2ff9
parent 51 49c226a8748e
permissions -rw-r--r--
add branch RCL_2_4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     1
<project default="nightly">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     2
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     3
	<target name="hi">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     4
		<echo message="${eclipse.home}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     5
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     6
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     7
	<target name="build" depends="zips,test"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     8
	<target name="nightly" depends="tag,zips,sign,generate.p2.metadata,test,update.index.html,copy"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     9
	<target name="testbuild" depends="zips,test,copy"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    10
	<target name="buildcopy" depends="zips,generate.p2.metadata,copy"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    11
	<target name="cdtbuild" depends="tag,zips,test,upload"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    12
	<target name="testpack" depends="zips,sign,pack,generate.p2.metadata,copy"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    13
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    14
	<target name="init">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    15
		<touch file="${user.home}/.cvspass" />
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    16
		<tstamp/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    17
		<property name="eclipseDist" value="/home/data/httpd/download.eclipse.org/eclipse/downloads/drops/R-3.5-200906111540/eclipse-SDK-3.5-linux-gtk-ppc.tar.gz"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    18
		<property name="mylynDist" value="/home/data/httpd/download.eclipse.org/tools/mylyn/update/galileo/mylyn-3.2.0.I20090520-2300-e3.4.zip"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    19
		<property name="rseDist" value="/home/data/httpd/download.eclipse.org/dsdp/tm/downloads/drops/R-3.1-200906171400/RSE-SDK-3.1.zip"/>
51
49c226a8748e CDT 6.0 from cdt_6_0 branch (eclipse.org cvs repository). This overwrites previous CDT 6.0 merges.
timkelly
parents: 37
diff changeset
    20
		<property name="branchVersion" value="6.0.1"/>
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    21
		<property name="timestamp" value="${DSTAMP}${TSTAMP}" />
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    22
		<property name="forceContextQualifier" value="${timestamp}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    23
		<property name="buildingOSGi" value="true"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    24
		<property name="buildDirectory" value="${basedir}/results"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    25
		<property name="testDirectory" value="${buildDirectory}/test"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    26
		<property name="baseLocation" value="${buildDirectory}/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    27
		<property name="pde.build.scripts" value="${eclipse.pdebuild.scripts}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    28
		<property name="collectingFolder" value="eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    29
		<property name="archivePrefix" value="eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    30
		<property name="buildType" value="I" />
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    31
		<property name="buildId" value="${buildType}${timestamp}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    32
		<property name="zipsdir" value="${buildDirectory}/${buildType}.${buildId}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    33
		<property name="masterFile" value="cdt-master-${branchVersion}-${buildId}.zip"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    34
		<property name="masterFeature" value="org.eclipse.cdt.master_${branchVersion}.jar"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    35
		<property name="cdtTest" value="org.eclipse.cdt.testing_6.0.0.${timestamp}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    36
		<property name="eclipseTest" value="org.eclipse.test_3.2.0"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    37
		<property name="messagefile" value="message.in"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    38
		<property name="mailto" value="vivkong@ca.ibm.com"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    39
		<property name="eclipseRoot" value=":pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    40
		<property name="baseos" value="${osgi.os}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    41
		<property name="basews" value="${osgi.ws}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    42
		<property name="basearch" value="${osgi.arch}"/>
51
49c226a8748e CDT 6.0 from cdt_6_0 branch (eclipse.org cvs repository). This overwrites previous CDT 6.0 merges.
timkelly
parents: 37
diff changeset
    43
		<property name="tagbranch" value="-r cdt_6_0"/>
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    44
		<property name="tagname" value="v${timestamp}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    45
		<property name="testReports" value="${zipsdir}/testReports"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    46
		<property name="junit-report-output" value="${testReports}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    47
		<property name="jvm1.5" value="/opt/public/common/ibm-java2-ppc-50/bin/java"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    48
		<condition property="onWindows">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    49
			<os family="windows"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    50
		</condition>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    51
		<mkdir dir="${buildDirectory}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    52
		<mkdir dir="${testReports}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    53
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    54
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    55
	<target name="fetch" depends="init">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    56
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    57
			<property name="builder" value="${basedir}/platform"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    58
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    59
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    60
			<property name="builder" value="${basedir}/sdk"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    61
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    62
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    63
			<property name="builder" value="${basedir}/gdbjtag"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    64
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    65
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    66
			<property name="builder" value="${basedir}/lrparser"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    67
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    68
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    69
			<property name="builder" value="${basedir}/lrparser.sdk"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    70
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    71
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    72
			<property name="builder" value="${basedir}/upc"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    73
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    74
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    75
			<property name="builder" value="${basedir}/upc.sdk"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    76
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    77
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    78
			<property name="builder" value="${basedir}/xlc"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    79
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    80
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    81
			<property name="builder" value="${basedir}/xlc.sdk"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    82
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    83
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    84
			<property name="builder" value="${basedir}/util"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    85
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    86
		<!--
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    87
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    88
			<property name="builder" value="${basedir}/dsfgdb"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    89
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    90
		-->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    91
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="preBuild">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    92
			<property name="builder" value="${basedir}/memory"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    93
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    94
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    95
			<property name="builder" value="${basedir}/platform"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    96
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    97
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    98
			<property name="builder" value="${basedir}/sdk"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    99
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   100
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   101
			<property name="builder" value="${basedir}/gdbjtag"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   102
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   103
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   104
			<property name="builder" value="${basedir}/lrparser"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   105
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   106
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   107
			<property name="builder" value="${basedir}/lrparser.sdk"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   108
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   109
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   110
			<property name="builder" value="${basedir}/upc"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   111
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   112
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   113
			<property name="builder" value="${basedir}/upc.sdk"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   114
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   115
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   116
			<property name="builder" value="${basedir}/xlc"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   117
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   118
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   119
			<property name="builder" value="${basedir}/xlc.sdk"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   120
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   121
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   122
			<property name="builder" value="${basedir}/util"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   123
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   124
		<!--
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   125
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   126
			<property name="builder" value="${basedir}/dsfgdb"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   127
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   128
		-->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   129
		<ant antfile="build.xml" dir="${pde.build.scripts}" target="fetch">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   130
			<property name="builder" value="${basedir}/memory"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   131
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   132
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   133
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   134
	<target name="unzip" depends="init" unless="dontUnzip">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   135
		<untar src="${eclipseDist}" dest="${buildDirectory}" compression="gzip"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   136
		<unzip src="${mylynDist}" dest="${buildDirectory}/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   137
		<unzip src="${rseDist}" dest="${buildDirectory}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   138
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   139
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   140
	<target name="zips" depends="init,unzip">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   141
		<ant antfile="build.xml" dir="${pde.build.scripts}">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   142
			<property name="builder" value="${basedir}/master" />
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   143
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   144
		<concat destfile="${zipsdir}/compilelog.txt">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   145
			<fileset dir="${buildDirectory}/plugins" includes="**/*@dot.log"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   146
		</concat>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   147
		<loadfile property="compileLog" srcFile="${zipsdir}/compilelog.txt"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   148
		<condition property="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   149
			<contains string="${compileLog}" substring=" ERROR "/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   150
		</condition>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   151
		<copy file="buildindex.html" tofile="${zipsdir}/index.html"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   152
		<replace file="${zipsdir}/index.html">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   153
			<replacefilter token="@branchVersion@" value="${branchVersion}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   154
			<replacefilter token="@buildId@" value="${buildId}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   155
		</replace>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   156
		<move file="${zipsdir}/${masterFile}" todir="${buildDirectory}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   157
		<unzip src="${buildDirectory}/${masterFile}" dest="${buildDirectory}/site"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   158
		<move file="${buildDirectory}/site/linux.gtk.x86/eclipse/epl-v10.html" todir="${buildDirectory}/site/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   159
		<move file="${buildDirectory}/site/linux.gtk.x86/eclipse/notice.html" todir="${buildDirectory}/site/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   160
		<copy file="buildsite.xml" tofile="${buildDirectory}/site/eclipse/site.xml"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   161
		<replace file="${buildDirectory}/site/eclipse/site.xml">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   162
			<replacefilter token="@buildVersion@" value="${branchVersion}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   163
			<replacefilter token="@timeStamp@" value="${timestamp}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   164
		</replace>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   165
		<copy file="pack.properties" todir="${buildDirectory}/site/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   166
		<!-- for some reason LPG isn't getting picked up-->		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   167
		<copy file="${buildDirectory}/plugins/net.sourceforge.lpg.lpgjavaruntime_1.1.0.v200803061910.jar"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   168
			todir="${buildDirectory}/site/eclipse/plugins"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   169
		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   170
		<!-- remove the master feature from the update site -->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   171
		<delete verbose="true" file="${buildDirectory}/site/eclipse/features/${masterFeature}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   172
		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   173
		<zip destfile="${zipsdir}/${masterFile}"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   174
			basedir="${buildDirectory}/site/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   175
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   176
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   177
	<!--pack200-->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   178
	<!-- this will pack the master zip using pack200 and generate p2 metadata based on the packed master zip-->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   179
	<target name="pack" depends="init" unless="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   180
    	<echo message="Pack200" />
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   181
    	<property name="launcher" value="${basedir}/tools/org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.jar"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   182
        <java jar="${launcher}" fork="true" timeout="10800000" jvm="${jvm1.5}" failonerror="true" maxmemory="768m" dir="${buildDirectory}/eclipse">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   183
            <arg line="-application org.eclipse.update.core.siteOptimizer" />
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   184
            <arg line="-jarProcessor"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   185
        	<arg line="-verbose"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   186
        	<arg line="-processAll"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   187
        	<arg line="-pack"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   188
        	<arg line="-outputDir ${zipsdir}/pack ${zipsdir}/${masterFile}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   189
        </java>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   190
		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   191
		<antcall target="generate.p2.metadata">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   192
			<param name="p2dir" value="${zipsdir}/pack/p2"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   193
			<param name="destination" value="${zipsdir}/pack/${masterFile}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   194
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   195
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   196
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   197
	<target name="generate.p2.metadata" depends="init" unless="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   198
		<!-- unzip the signed master site -->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   199
		<property name="p2dir" value="${zipsdir}/p2"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   200
		<property name="destination" value="${zipsdir}/${masterFile}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   201
		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   202
		<unzip src="${destination}" dest="${p2dir}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   203
		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   204
		<!-- generate p2 metadata -->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   205
		<antcall target="p2.metadata.generator">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   206
			<param name="p2site" value="${p2dir}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   207
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   208
		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   209
		<!-- zip everything back up -->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   210
		<zip destfile="${destination}"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   211
			basedir="${p2dir}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   212
		<delete dir="${p2dir}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   213
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   214
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   215
    <target name="p2.metadata.generator">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   216
    	<echo message="Generate p2 Metadata" />
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   217
    	<property name="p2site" value="${zipsdir}/p2"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   218
    	<property name="launcher" value="${basedir}/tools/org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.jar"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   219
        <!--java jar="${launcher}" fork="true" timeout="10800000" jvm="${jvm1.5}" failonerror="true" maxmemory="768m" error="${zipsdir}/p2errorlog.txt" dir="${buildDirectory}/eclipse" output="${zipsdir}/p2metadata.txt"-->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   220
    	<java jar="${launcher}" fork="true" timeout="10800000" jvm="${jvm1.5}" failonerror="true" maxmemory="768m" dir="${buildDirectory}/eclipse">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   221
            <arg line="-application org.eclipse.equinox.p2.metadata.generator.EclipseGenerator" />
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   222
            <arg line="-updateSite ${p2site}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   223
        	<arg line="-site file:${p2site}/site.xml"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   224
        	<arg line="-metadataRepository file:${p2site}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   225
        	<arg line="-metadataRepositoryName CDT Update Site"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   226
        	<arg line="-artifactRepository file:${p2site}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   227
        	<arg line="-artifactRepositoryName CDT Artifacts"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   228
        	<arg line="-compress"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   229
        	<arg line="-reusePack200Files"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   230
        	<arg line="-noDefaultIUs"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   231
        	<arg line="-vmargs -Xmx256M"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   232
        </java>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   233
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   234
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   235
	<target name="test" depends="init" unless="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   236
		<record name="${testReports}/testsLog.txt" action="start" loglevel="verbose"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   237
		<untar src="${eclipseDist}" dest="${testDirectory}" compression="gzip"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   238
		<unzip src="${mylynDist}" dest="${testDirectory}/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   239
		<unzip src="${zipsdir}/cdt-master-${branchVersion}-${buildId}.zip"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   240
			dest="${testDirectory}/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   241
		<unzip src="${testDirectory}/eclipse/plugins/${cdtTest}.jar"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   242
			dest="${testDirectory}/test/cdt"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   243
		<unzip src="${testDirectory}/eclipse/plugins/${eclipseTest}.jar"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   244
			dest="${testDirectory}/test/eclipse"/>		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   245
		<delete file="${testDirectory}/eclipse/site.xml"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   246
		<delete file="${testDirectory}/eclipse/pack.properties"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   247
		<delete file="${testDirectory}/eclipse/artifacts.jar"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   248
		<delete file="${testDirectory}/eclipse/content.jar"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   249
		<ant antfile="test.xml" dir="${testDirectory}/test/cdt">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   250
			<property name="eclipse-home" value="${testDirectory}/eclipse"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   251
			<property name="library-file" value="${testDirectory}/test/eclipse/library.xml"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   252
			<property name="os" value="${baseos}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   253
			<property name="ws" value="${basews}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   254
			<property name="arch" value="${basearch}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   255
		</ant>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   256
		<xslt style="${basedir}/JUNIT.XSL"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   257
			in="${testDirectory}/eclipse/org.eclipse.cdt.testing.xml"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   258
			out="${zipsdir}/junits.html"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   259
		<copy file="${testDirectory}/eclipse/org.eclipse.cdt.testing.xml"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   260
		    tofile="${testReports}/org.eclipse.cdt.testing.xml"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   261
		    failonerror="false"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   262
		<record name="${testReports}/testsLog.txt" action="stop"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   263
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   264
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   265
	<target name="sign" depends="init" unless="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   266
		<exec executable="sign">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   267
			<arg value="/home/data/httpd/download-staging.priv/tools/cdt/releng/results/${buildType}.${buildId}/${masterFile}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   268
			<arg value="nomail"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   269
			<arg value="/home/data/httpd/download-staging.priv/tools/cdt/releng/results/signed"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   270
		</exec>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   271
		<waitfor maxwait="30" maxwaitunit="minute">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   272
			<available file="${buildDirectory}/signed/${masterFile}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   273
		</waitfor>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   274
		<move file="${buildDirectory}/signed/${masterFile}" todir="${zipsdir}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   275
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   276
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   277
	<target name="upload" depends="init" unless="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   278
		<property name="remotedir" value="dschaefer@dev.eclipse.org:cdt/builds/${branchVersion}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   279
		<exec dir="${buildDirectory}" executable="scp">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   280
			<arg line="${remotedir}/index.html index.html"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   281
		</exec>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   282
		<replace file="${buildDirectory}/index.html">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   283
			<replacetoken><![CDATA[  <!-- add here -->]]></replacetoken>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   284
			<replacevalue><![CDATA[  <li><a href="@buildType@.@buildId@/index.html">@buildId@</a></li>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   285
  <!-- add here -->]]></replacevalue>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   286
		</replace>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   287
		<replace file="${buildDirectory}/index.html">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   288
			<replacefilter token="@buildType@" value="${buildType}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   289
			<replacefilter token="@buildId@" value="${buildId}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   290
		</replace>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   291
		<exec dir="${buildDirectory}" executable="scp">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   292
			<arg line="index.html ${remotedir}/index.html"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   293
		</exec>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   294
		<exec dir="${buildDirectory}" executable="scp">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   295
			<arg line="-r ${buildType}.${buildId} ${remotedir}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   296
		</exec>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   297
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   298
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   299
	<target name="update.index.html" depends="init" unless="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   300
		<property name="copyToDir" value="/home/www/tools/cdt/builds/${branchVersion}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   301
		<replace file="${copyToDir}/index.html">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   302
			<replacetoken><![CDATA[  <!-- add here -->]]></replacetoken>
51
49c226a8748e CDT 6.0 from cdt_6_0 branch (eclipse.org cvs repository). This overwrites previous CDT 6.0 merges.
timkelly
parents: 37
diff changeset
   303
			<replacevalue><![CDATA[  <li><a href="@buildType@.@buildId@/index.html">@buildId@</a></li>
49c226a8748e CDT 6.0 from cdt_6_0 branch (eclipse.org cvs repository). This overwrites previous CDT 6.0 merges.
timkelly
parents: 37
diff changeset
   304
  <!-- add here -->]]></replacevalue>
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   305
		</replace>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   306
		<replace file="${copyToDir}/index.html">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   307
			<replacefilter token="@buildType@" value="${buildType}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   308
			<replacefilter token="@buildId@" value="${buildId}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   309
		</replace>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   310
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   311
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   312
	<target name="copy" depends="init" unless="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   313
		<property name="copyToDir" value="/home/www/tools/cdt/builds/${branchVersion}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   314
		<mkdir dir="${copyToDir}/${buildType}.${buildId}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   315
		<copy todir="${copyToDir}/${buildType}.${buildId}">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   316
			<fileset dir="${buildDirectory}/${buildType}.${buildId}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   317
		</copy>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   318
		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   319
		<!-- Create symlink to latest build -->
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   320
		<symlink action="delete" link="${copyToDir}/latest" failonerror="false"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   321
		<symlink link="${copyToDir}/latest" resource="${copyToDir}/${buildType}.${buildId}" overwrite="true"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   322
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   323
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   324
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   325
	<target name="mail" depends="init">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   326
		<antcall target="mailPass"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   327
		<antcall target="mailFail"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   328
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   329
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   330
	<target name="mailPass" unless="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   331
		<copy file="${messagefile}" tofile="message.txt" overwrite="true"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   332
		<replace file="message.txt">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   333
			<replacefilter token="@branchVersion@" value="${branchVersion}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   334
			<replacefilter token="@buildId@" value="${buildId}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   335
		</replace>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   336
		<mail subject="CDT ${branchVersion} Build ${buildId} completed"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   337
 			tolist="${mailto}" from="dschaefer@qnx.com">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   338
			<message src="message.txt"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   339
		</mail>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   340
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   341
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   342
	<target name="mailFail" if="hasErrors">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   343
		<mail subject="CDT ${branchVersion} Build ${buildId} failed"
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   344
			tolist="${mailto}" from="dschaefer@qnx.com">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   345
			<message src="compilelog.txt"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   346
		</mail>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   347
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   348
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   349
	<target name="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   350
		<cvs cvsroot="/cvsroot/tools" command="rtag ${tagbranch} ${tagname} ${tagmodule}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   351
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   352
	
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   353
	<target name="tag" depends="init">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   354
		<property name="cdtTag" value="${tagname}"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   355
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   356
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   357
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   358
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   359
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.aix"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   360
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   361
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   362
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.linux"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   363
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   364
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   365
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.linux.ia64"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   366
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   367
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   368
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.linux.ppc"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   369
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   370
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   371
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.linux.x86"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   372
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   373
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   374
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.linux.x86_64"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   375
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   376
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   377
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.macosx"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   378
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   379
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   380
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.qnx"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   381
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   382
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   383
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.solaris"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   384
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   385
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   386
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   387
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   388
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   389
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.core.win32"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   390
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   391
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   392
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   393
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   394
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   395
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.ui.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   396
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   397
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   398
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.make.core"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   399
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   400
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   401
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.make.core.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   402
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   403
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   404
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.make.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   405
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   406
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   407
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.managedbuilder.core"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   408
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   409
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   410
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.managedbuilder.core.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   411
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   412
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   413
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.managedbuilder.gnu.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   414
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   415
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   416
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.managedbuilder.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   417
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   418
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   419
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.managedbuilder.ui.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   420
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   421
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   422
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.debug.core"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   423
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   424
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   425
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.debug.core.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   426
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   427
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   428
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.debug.mi.core"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   429
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   430
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   431
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.debug.mi.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   432
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   433
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   434
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.debug.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   435
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   436
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   437
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.debug.ui.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   438
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   439
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   440
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.doc.isv"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   441
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   442
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   443
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.doc.user"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   444
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   445
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   446
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.launch"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   447
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   448
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   449
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   450
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   451
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   452
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.platform-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   453
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   454
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   455
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.gnu.build-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   456
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   457
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   458
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.gnu.debug-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   459
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   460
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   461
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   462
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   463
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   464
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.releng"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   465
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   466
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   467
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.sdk"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   468
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   469
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   470
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.sdk-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   471
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   472
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   473
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.testing"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   474
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   475
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   476
			<param name="tagmodule" value="org.eclipse.cdt/all/org.eclipse.cdt.testing-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   477
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   478
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   479
			<param name="tagmodule" value="org.eclipse.cdt/jtag/org.eclipse.cdt.debug.gdbjtag"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   480
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   481
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   482
			<param name="tagmodule" value="org.eclipse.cdt/jtag/org.eclipse.cdt.debug.gdbjtag.core"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   483
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   484
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   485
			<param name="tagmodule" value="org.eclipse.cdt/jtag/org.eclipse.cdt.debug.gdbjtag.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   486
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   487
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   488
			<param name="tagmodule" value="org.eclipse.cdt/jtag/org.eclipse.cdt.debug.gdbjtag-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   489
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   490
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   491
			<param name="tagmodule" value="org.eclipse.cdt/lrparser/org.eclipse.cdt.core.lrparser"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   492
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   493
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   494
			<param name="tagmodule" value="org.eclipse.cdt/lrparser/org.eclipse.cdt.core.lrparser.feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   495
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   496
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   497
			<param name="tagmodule" value="org.eclipse.cdt/lrparser/org.eclipse.cdt.core.lrparser.sdk.feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   498
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   499
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   500
			<param name="tagmodule" value="org.eclipse.cdt/lrparser/org.eclipse.cdt.core.lrparser.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   501
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   502
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   503
			<param name="tagmodule" value="org.eclipse.cdt/upc/org.eclipse.cdt.core.parser.upc"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   504
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   505
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   506
			<param name="tagmodule" value="org.eclipse.cdt/upc/org.eclipse.cdt.core.parser.upc.feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   507
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   508
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   509
			<param name="tagmodule" value="org.eclipse.cdt/upc/org.eclipse.cdt.core.parser.upc.sdk.feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   510
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   511
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   512
			<param name="tagmodule" value="org.eclipse.cdt/upc/org.eclipse.cdt.core.parser.upc.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   513
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   514
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   515
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.managedbuilder.xlc.core"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   516
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   517
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   518
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.managedbuilder.xlc.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   519
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   520
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   521
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.managedbuilder.xlupc.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   522
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   523
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   524
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.errorparsers.xlc"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   525
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   526
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   527
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.errorparsers.xlc.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   528
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   529
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   530
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.core.lrparser.xlc"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   531
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   532
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   533
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.core.lrparser.xlc.tests"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   534
		</antcall>				
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   535
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   536
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.make.xlc.core"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   537
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   538
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   539
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.xlc.feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   540
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   541
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   542
			<param name="tagmodule" value="org.eclipse.cdt/xlc/org.eclipse.cdt.xlc.sdk-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   543
		</antcall>		
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   544
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   545
			<param name="tagmodule" value="org.eclipse.cdt/util/org.eclipse.cdt.util"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   546
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   547
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   548
			<param name="tagmodule" value="org.eclipse.cdt/util/org.eclipse.cdt.util-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   549
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   550
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   551
			<param name="tagmodule" value="org.eclipse.cdt/mylyn/org.eclipse.cdt.mylyn"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   552
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   553
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   554
			<param name="tagmodule" value="org.eclipse.cdt/mylyn/org.eclipse.cdt.mylyn.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   555
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   556
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   557
			<param name="tagmodule" value="org.eclipse.cdt/mylyn/org.eclipse.cdt.mylyn-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   558
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   559
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   560
			<param name="tagmodule" value="org.eclipse.cdt/releng/org.eclipse.cdt.master"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   561
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   562
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   563
			<param name="tagmodule" value="org.eclipse.cdt/memory/org.eclipse.cdt.debug.ui.memory.traditional"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   564
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   565
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   566
			<param name="tagmodule" value="org.eclipse.cdt/memory/org.eclipse.cdt.debug.ui.memory.memorybrowser"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   567
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   568
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   569
			<param name="tagmodule" value="org.eclipse.cdt/memory/org.eclipse.cdt.debug.ui.memory.transport"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   570
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   571
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   572
			<param name="tagmodule" value="org.eclipse.cdt/memory/org.eclipse.cdt.debug.ui.memory.search"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   573
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   574
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   575
			<param name="tagmodule" value="org.eclipse.cdt/memory/org.eclipse.cdt.debug.ui.memory-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   576
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   577
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   578
			<param name="tagmodule" value="org.eclipse.cdt/dsf/org.eclipse.cdt.dsf"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   579
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   580
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   581
			<param name="tagmodule" value="org.eclipse.cdt/dsf/org.eclipse.cdt.dsf.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   582
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   583
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   584
			<param name="tagmodule" value="org.eclipse.cdt/dsf/org.eclipse.cdt.examples.dsf"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   585
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   586
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   587
			<param name="tagmodule" value="org.eclipse.cdt/dsf/org.eclipse.cdt.examples.dsf.pda"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   588
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   589
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   590
			<param name="tagmodule" value="org.eclipse.cdt/dsf/org.eclipse.cdt.examples.dsf.pda.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   591
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   592
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   593
			<param name="tagmodule" value="org.eclipse.cdt/dsf/org.eclipse.cdt.tests.dsf"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   594
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   595
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   596
			<param name="tagmodule" value="org.eclipse.cdt/dsf/org.eclipse.cdt.examples.dsf-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   597
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   598
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   599
			<param name="tagmodule" value="org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.dsf.gdb"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   600
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   601
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   602
			<param name="tagmodule" value="org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   603
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   604
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   605
			<param name="tagmodule" value="org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   606
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   607
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   608
			<param name="tagmodule" value="org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.gnu.dsf-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   609
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   610
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   611
			<param name="tagmodule" value="org.eclipse.cdt/cross/org.eclipse.cdt.launch.remote-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   612
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   613
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   614
			<param name="tagmodule" value="org.eclipse.cdt/cross/org.eclipse.cdt.launch.remote"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   615
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   616
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   617
			<param name="tagmodule" value="org.eclipse.cdt/cross/org.eclipse.cdt.build.crossgcc-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   618
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   619
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   620
			<param name="tagmodule" value="org.eclipse.cdt/cross/org.eclipse.cdt.build.crossgcc"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   621
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   622
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   623
			<param name="tagmodule" value="org.eclipse.cdt/p2/org.eclipse.cdt.p2-feature"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   624
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   625
		<antcall target="tagone">
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   626
			<param name="tagmodule" value="org.eclipse.cdt/p2/org.eclipse.cdt.p2"/>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   627
		</antcall>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   628
	</target>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
   629
</project>