Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4e0a859f8b293f0fffee13ab238f5cc333970f67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<project name="exportplugins" default="export to remote targets" basedir=".">
	<target name="init">
		<tstamp/>
	</target>

	<target name="export to remote targets" depends="init">
		<ant antfile="scripts/updateTarget.xml" dir="../../org.eclipse.ant.core" target="export"/>
		<ant antfile="scripts/updateTarget.xml" dir="../../org.eclipse.ant.core" target="copy"/>
		<ant antfile="scripts/updateTarget.xml" dir="../../org.eclipse.ui.externaltools" target="export"/>
		<ant antfile="scripts/updateTarget.xml" dir="../../org.eclipse.ui.externaltools" target="copy"/>
	</target>
</project>

Back to the top