Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2014-04-17 12:39:52 +0000
committerDavid Williams2014-04-17 12:39:52 +0000
commit57bb299273c5e39d59141dd36ac6933fc0bda61f (patch)
treeb6b6e302ee0d3dce60294a01a4ed2b4f9bda5286 /eclipse.platform.releng.tychoeclipsebuilder/rcp.config
parente3751afbfec7b286881bdcfb3b8afadb7c323fb9 (diff)
downloadeclipse.platform.releng.aggregator-57bb299273c5e39d59141dd36ac6933fc0bda61f.tar.gz
eclipse.platform.releng.aggregator-57bb299273c5e39d59141dd36ac6933fc0bda61f.tar.xz
eclipse.platform.releng.aggregator-57bb299273c5e39d59141dd36ac6933fc0bda61f.zip
Bug 406825 - consolidate master-x features into one.
Bug 432776 - move and simplify eclipse.platform.repository
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/rcp.config')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/rcp.config/buildConfiguration.xml43
1 files changed, 0 insertions, 43 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/rcp.config/buildConfiguration.xml b/eclipse.platform.releng.tychoeclipsebuilder/rcp.config/buildConfiguration.xml
deleted file mode 100644
index 09e5955c0..000000000
--- a/eclipse.platform.releng.tychoeclipsebuilder/rcp.config/buildConfiguration.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<project name="org.eclipse.rcp.configuration" default="main" basedir=".">
-
- <target name="main" >
- <property name="product" value="${basedir}/config.product" />
- <property name="id" value="org.eclipse.pde.build.container.feature" />
- <property name="type" value="feature" />
- <property name="verify" value="false" />
-
- <path id="launcher.paths">
- <fileset dir="${reposource}" includes="plugins/org.eclipse.equinox.launcher*" />
- <!-- the built version of the org.eclipse.equinox.executable feature -->
- <dirset dir="${buildDirectory}" includes="features/org.eclipse.equinox.executable*" />
- </path>
-
- <!-- generate a feature based on our .product file -->
- <property file="${eclipse.build.configs}/master/build.properties" />
- <ant antfile="${eclipse.pdebuild.scripts}/productBuild/productBuild.xml" target="generateFeature" >
- <property name="nestedInclusions" value="false" />
- <property name="buildDirectory" value="${basedir}/temp"/>
- </ant>
- <!-- generate product build scripts for the generated feature -->
- <ant antfile="${eclipse.pdebuild.scripts}/genericTargets.xml" target="generateScript" >
- <property name="buildDirectory" value="${basedir}/temp"/>
- <property name="baseLocation" value="" />
- <property name="transformedRepoLocation" value="" />
- <property name="pluginPath" refid="launcher.paths" />
- <property name="forceContextQualifier" value="${buildId}" />
- </ant>
-
- <!-- get the generate p2.inf that got generated with the above scripts -->
- <move file="${basedir}/temp/features/org.eclipse.pde.build.container.feature/product/p2.inf" tofile="${basedir}/p2.inf" overwrite="true" />
- <replace file="${basedir}/p2.inf" token="@FLAVOR@" value="tooling" />
-
- <!-- publish the configuration feature with the generated p2.inf -->
- <replace file="${basedir}/feature.xml" token="@qualifier@" value="${buildId}" />
- <eclipse.gatherFeature
- metadataRepository="file:${reposource}"
- artifactRepository="file:${reposource}"
- buildResultFolder="${basedir}"
- baseDirectory="${basedir}"
- />
- </target>
-</project>

Back to the top