Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'packages/org.eclipse.epp.package.mobile.feature/buckminster.ant')
-rw-r--r--packages/org.eclipse.epp.package.mobile.feature/buckminster.ant26
1 files changed, 0 insertions, 26 deletions
diff --git a/packages/org.eclipse.epp.package.mobile.feature/buckminster.ant b/packages/org.eclipse.epp.package.mobile.feature/buckminster.ant
deleted file mode 100644
index a53034b3..00000000
--- a/packages/org.eclipse.epp.package.mobile.feature/buckminster.ant
+++ /dev/null
@@ -1,26 +0,0 @@
-<project>
- <import file="${buckminster.pdetasks}"/>
- <target name="peruse.about.mappings">
- <!-- action.input appoints a directory. Convert it to the single file that it contains -->
- <pathconvert property="jarfile">
- <buckminster.valuefileset value="${fs:action.input}"/>
- </pathconvert>
-
- <!-- Extract the feature version from the feature manifest -->
- <extractFeatureVersion file="${sp:manifest}" property="feature.version"/>
-
- <!-- Obtain the build.id property from the build context and assign it to an ant
- property with the same name -->
- <buckminster.contextProperty name="build.id"/>
-
- <!-- Unzip, replace tokens, an rezip -->
- <property name="jartmp" location="${buckminster.temp}/jartmp"/>
- <delete dir="${jartmp}"/>
- <mkdir dir="${jartmp}"/>
- <unzip dest="${jartmp}" src="${jarfile}"/>
- <replace token="@build@" value="${build.id}" file="${jartmp}/about.mappings"/>
- <replace token="@featureVersion@" value="${feature.version}" file="${jartmp}/about.mappings"/>
- <zip destfile="${jarfile}" basedir="${jartmp}"/>
- <delete dir="${jartmp}"/>
- </target>
-</project>

Back to the top