Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'TMP/rcp.config/buildConfiguration.xml')
-rwxr-xr-xTMP/rcp.config/buildConfiguration.xml44
1 files changed, 0 insertions, 44 deletions
diff --git a/TMP/rcp.config/buildConfiguration.xml b/TMP/rcp.config/buildConfiguration.xml
deleted file mode 100755
index 7ef7e9277..000000000
--- a/TMP/rcp.config/buildConfiguration.xml
+++ /dev/null
@@ -1,44 +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*" />
- <dirset dir="${buildDirectory}" includes="features/org.eclipse.license*" />
- </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