Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0b3324a92ce14fa85da310d5a8d0225b87c98fa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0"?>
<project name="project" default="build.site">
	<property name="director.url" value="http://www.eclipse.org/downloads/download.php?file=/tools/buckminster/products/director_1.0.0.r10296.zip&amp;r=1" />

	<!--Property file containing overrides for the default properties
	-->
	<property name="build.root" location="${user.home}/epp.build"/>
	<property file="${build.root}/build.properties" />
	<property name="bm.headless.site" value="http://download.eclipse.org/tools/buckminster/headless-3.5/" />
	<property name="galileo.site" value="http://download.eclipse.org/releases/galileo/" />

	<property name="buildtools" location="${build.root}/tools" />
	<property name="workspace" location="${build.root}/workspace" />
	<property name="cquery.url" location="${basedir}/epp.cquery" />

	<!-- This macro executes the default application of an eclipse installation that resides
	     in the folder ${buildtools}/@app
	  -->
	<macrodef name="eclipse.launch">
		<attribute name="app"/>
		<element name="args" optional="true" />
		<sequential>
			<!-- We assume that the eclipse installation is beneath ${buildtools} -->
			<property name="@{app}.deploy.dir" value="${buildtools}/@{app}"/>

			<!-- Find the Eclipse launcher and assing its location to the @{app}.launcher property -->
			<pathconvert property="@{app}.launcher">
				<first count="1">
					<sort>
						<fileset dir="${@{app}.deploy.dir}/plugins" includes="**/org.eclipse.equinox.launcher_*.jar" />
						<reverse xmlns="antlib:org.apache.tools.ant.types.resources.comparators">
							<date />
						</reverse>
					</sort>
				</first>
			</pathconvert>

			<!-- Launch the eclipse application -->
			<java fork="true" jar="${@{app}.launcher}" dir="${@{app}.deploy.dir}" failonerror="true">
				<!-- Uncomment to debug <jvmarg value="-agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=y"/> -->
				<args />
			</java>
		</sequential>
	</macrodef>

	<!--Fetch and unzip the director
	-->
	<available file="${buildtools}/director/director" property="director.exists" />
	<target name="get.director" unless="director.exists">
		<tempfile destdir="${java.io.tmpdir}" prefix="director-" suffix=".zip" property="director.zip" deleteonexit="true"/>
		<get src="${director.url}" dest="${director.zip}" />
		<unzip src="${director.zip}" dest="${buildtools}" />
	</target>

	<!--Configure the Buckminster product with needed features
	-->
	<target name="install.buckminster" depends="get.director">
		<eclipse.launch app="director">
			<args>
				<arg value="-consoleLog"/>
				<arg value="-r"/>
				<arg value="${bm.headless.site}"/>
				<arg value="-r"/>
				<arg value="${galileo.site}"/>
				<arg value="-d"/>
				<arg value="${buildtools}/buckminster"/>
				<arg value="-p"/>
				<arg value="Buckminster"/>
				<arg value="-i"/>
				<arg value="org.eclipse.buckminster.cmdline.product"/>
				<arg value="-i"/>
				<arg value="org.eclipse.buckminster.core.headless.feature.feature.group" />
				<arg value="-i"/>
				<arg value="org.eclipse.buckminster.cvs.headless.feature.feature.group" />
				<arg value="-i"/>
				<arg value="org.eclipse.buckminster.pde.headless.feature.feature.group" />
				<arg value="-i"/>
				<arg value="org.eclipse.platform.feature.group" />
			</args>
		</eclipse.launch>
	</target>

	<target name="build.workspace" depends="install.buckminster">
		<eclipse.launch app="buckminster">
			<args>
				<jvmarg value="-Dgalileo.site=${galileo.site}" />
				<arg value="-data" />
				<arg value="${workspace}" />
				<arg value="import"/>
				<arg value="${cquery.url}" />
			</args>
		</eclipse.launch>
	</target>

	<target name="build.site" depends="build.workspace">
		<eclipse.launch app="buckminster">
			<args>
				<jvmarg value="-Dqualifier.replacement.*=generator:lastModified" />
				<jvmarg value="-Dgenerator.lastModified.format=yyyyMMdd-HHmm" />
				<jvmarg value="-Dtarget.os=*" />
				<jvmarg value="-Dtarget.ws=*" />
				<jvmarg value="-Dtarget.arch=*" />
				<jvmarg value="-Dbuckminster.output.root=${build.root}/buildresult" />
				<jvmarg value="-Dbuckminster.temp.root=${build.root}/temp" />
				<arg value="-data" />
				<arg value="${workspace}" />
				<arg value="perform"/>
				<arg value="org.eclipse.epp.allpackages.feature#site.p2.zip" />
			</args>
		</eclipse.launch>
	</target>

	<target name="clean.all" depends="clean.buckminster,clean.workspace">
		<delete dir="${buildtools}/director" />
	</target>

	<target name="clean.workspace">
		<delete dir="${workspace}" />
	</target>

	<target name="clean.buckminster">
		<delete dir="${buildtools}/buckminster" />
	</target>
</project>

Back to the top