Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2009-03-16 20:05:22 +0000
committerAndrew Niefer2009-03-16 20:05:22 +0000
commitc9171fa8fb3e1a53b1cb92b252e78f420ad33120 (patch)
tree6415b4fc058cbafadd87e43aaa8b27cc3709398c /examples/org.eclipse.equinox.p2.examples.rcp.cloud.releng/buildProduct.xml
parent9280a3c53c4c580d45483b9fb4852729d3d42127 (diff)
downloadrt.equinox.p2-c9171fa8fb3e1a53b1cb92b252e78f420ad33120.tar.gz
rt.equinox.p2-c9171fa8fb3e1a53b1cb92b252e78f420ad33120.tar.xz
rt.equinox.p2-c9171fa8fb3e1a53b1cb92b252e78f420ad33120.zip
releng project for building p2.examples.rcp.cloud.releng
Diffstat (limited to 'examples/org.eclipse.equinox.p2.examples.rcp.cloud.releng/buildProduct.xml')
-rw-r--r--examples/org.eclipse.equinox.p2.examples.rcp.cloud.releng/buildProduct.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/org.eclipse.equinox.p2.examples.rcp.cloud.releng/buildProduct.xml b/examples/org.eclipse.equinox.p2.examples.rcp.cloud.releng/buildProduct.xml
new file mode 100644
index 000000000..2f1b9a970
--- /dev/null
+++ b/examples/org.eclipse.equinox.p2.examples.rcp.cloud.releng/buildProduct.xml
@@ -0,0 +1,26 @@
+<project default="main">
+ <target name="main">
+ <property name="baseLocation" value="${eclipse.home}"/>
+ <!-- by default, check for deltapack co-located with eclipse -->
+ <property name="deltapack" value="${eclipse.home}/../deltapack/eclipse"/>
+
+ <!-- Check that we have a deltapack -->
+ <available property="haveDeltaPack" file="${deltapack}"/>
+ <fail unless="haveDeltaPack" message="The deltapack is required to build this product. Please edit buildProduct.xml or set the &quot;deltapack&quot; property." />
+
+ <property name="builder" value="${basedir}" />
+ <property name="buildDirectory" value="${basedir}/buildDirectory"/>
+ <property name="pluginPath" value="${basedir}/..${path.separator}${deltapack}" />
+ <property name="buildTempFolder" value="${buildDirectory}" />
+
+ <ant antfile="${eclipse.pdebuild.scripts}/productBuild/productBuild.xml" />
+
+ <move todir="${basedir}">
+ <fileset dir="${buildDirectory}/I.TestBuild" includes="*.zip"/>
+ </move>
+
+ <!-- refresh the workspace -->
+ <eclipse.convertPath fileSystemPath="${basedir}" property="resourcePath"/>
+ <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
+ </target>
+</project> \ No newline at end of file

Back to the top