Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-01-04 03:48:52 +0000
committerDavid Williams2013-01-04 03:48:52 +0000
commit62b26793ed23d3a3a01f0dd283ac3746a652c640 (patch)
tree4d44dab7508c2b11324c7aa124db8e17be82ff32
parenta377e5e1e917e7692177e942f9412ecee5ce78de (diff)
downloadeclipse.platform-62b26793ed23d3a3a01f0dd283ac3746a652c640.tar.gz
eclipse.platform-62b26793ed23d3a3a01f0dd283ac3746a652c640.tar.xz
eclipse.platform-62b26793ed23d3a3a01f0dd283ac3746a652c640.zip
Bug 397330 - Should we stop building/delivering "jarprocessor" on DLv20130104-034852I20130108-0800
page?
-rw-r--r--update/org.eclipse.update.core/build.properties1
-rw-r--r--update/org.eclipse.update.core/customBuildCallbacks.xml193
2 files changed, 0 insertions, 194 deletions
diff --git a/update/org.eclipse.update.core/build.properties b/update/org.eclipse.update.core/build.properties
index cc35d0758..38710f732 100644
--- a/update/org.eclipse.update.core/build.properties
+++ b/update/org.eclipse.update.core/build.properties
@@ -19,4 +19,3 @@ bin.includes = plugin.xml,\
src.includes = about.html,\
schema/
output.. = bin/
-customBuildCallbacks=customBuildCallbacks.xml
diff --git a/update/org.eclipse.update.core/customBuildCallbacks.xml b/update/org.eclipse.update.core/customBuildCallbacks.xml
deleted file mode 100644
index a26456fb3..000000000
--- a/update/org.eclipse.update.core/customBuildCallbacks.xml
+++ /dev/null
@@ -1,193 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?> <!--
- Copyright (c) 2005, 2007 IBM Corporation and others.
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Public License v1.0
- which accompanies this distribution, and is available at
- http://www.eclipse.org/legal/epl-v10.html
-
- Contributors:
- IBM Corporation - initial API and implementation
- -->
-
-<!-- ===================================================================== -->
-<!-- Custom targets called from a project's generated build.xml -->
-<!-- Set customBuildCallbacks=<path/to/this/file> in your build.properties.-->
-<!-- ===================================================================== -->
-<project name="Build specific targets and properties" default="noDefault">
-
- <!-- ===================================================================== -->
- <!-- Default target -->
- <!-- ===================================================================== -->
- <target name="noDefault">
- <echo message="This file must be called with explicit targets" />
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do before the target build.jars -->
- <!-- Available parameters : -->
- <!-- build.result.folder - folder to contain the build results -->
- <!-- ===================================================================== -->
- <target name="pre.build.jars">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do after the target build.jars -->
- <!-- Available parameters : -->
- <!-- build.result.folder - folder to contain the build results -->
- <!-- ===================================================================== -->
- <target name="post.build.jars">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do before the target build.sources -->
- <!-- Available parameters : -->
- <!-- build.result.folder - folder to contain the build results -->
- <!-- ===================================================================== -->
- <target name="pre.build.sources">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do after the target build.sources -->
- <!-- Available parameters : -->
- <!-- build.result.folder - folder to contain the build results -->
- <!-- ===================================================================== -->
- <target name="post.build.sources">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do before the compilation target <name> -->
- <!-- Substitute "name" with the name of the compilation target, eg @dot -->
- <!-- Available parameters : -->
- <!-- source.foldern : n = 1 ... N, the source folders -->
- <!-- target.folder : where the results of the compilation go -->
- <!-- <name>.classpath : name = name of the compilation target. A -->
- <!-- reference to the classpath structure. -->
- <!-- ===================================================================== -->
- <target name="pre.name">
- </target>
-
- <target name="pre.@dot">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do during the compilation target <name>, after the compile -->
- <!-- but before jaring. Substitute "name" with the name of the compilation-->
- <!-- target, eg @dot -->
- <!-- Available parameters : -->
- <!-- source.foldern : n = 1 ... N, the source folders -->
- <!-- target.folder : where the results of the compilation go -->
- <!-- <name>.classpath : name = name of the compilation target. A -->
- <!-- reference to the classpath structure. -->
- <!-- ===================================================================== -->
- <target name="post.compile.name">
- </target>
-
- <target name="post.compile.@dot">
- <property name="buildLabel" value="" />
- <property name="postingDirectory" value="${basedir}" />
- <property name="dest" value="${postingDirectory}/${buildLabel}" />
- <mkdir dir="${dest}"/>
- <echo message="UPDATE jarprocessor.jar" />
- <delete file="${dest}/jarprocessor.jar" failonerror="false"/>
- <jar destfile="${dest}/jarprocessor.jar">
- <fileset dir="${target.folder}">
- <include name="org/eclipse/update/internal/jarprocessor/*"/>
- <exclude name="**/jarprocessor.jardesc"/>
- </fileset>
- <fileset dir="${basedir}" includes="about.html" />
- <manifest>
- <attribute name="Main-Class" value="org.eclipse.update.internal.jarprocessor.Main"/>
- </manifest>
- </jar>
-
- <echo message="UPDATE jarprocessorsrc.zip"/>
- <delete file="${dest}/jarprocessorsrc.zip" failonerror="false" />
- <zip destFile="${dest}/jarprocessorsrc.zip">
- <fileset dir="${basedir}/jarprocessor" includes="**/*.java" />
- <fileset dir="${basedir}" includes="about.html" />
- </zip>
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do after the compilation target <name> -->
- <!-- Substitute "name" with the name of the compilation target, eg @dot -->
- <!-- Available parameters : -->
- <!-- jar.location - the location of the compilation results -->
- <!-- <name>.classpath : name = name of the compilation target. A -->
- <!-- reference to the classpath structure. -->
- <!-- ===================================================================== -->
- <target name="post.name">
- </target>
-
- <target name="post.@dot">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do before the target gather.bin.parts -->
- <!-- Available parameters : -->
- <!-- build.result.folder - folder containing the build results -->
- <!-- target.folder - destination folder -->
- <!-- ===================================================================== -->
- <target name="pre.gather.bin.parts">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do after the target gather.bin.parts -->
- <!-- Available parameters : -->
- <!-- build.result.folder - folder containing the build results -->
- <!-- target.folder - destination folder -->
- <!-- ===================================================================== -->
- <target name="post.gather.bin.parts">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do before the target gather.sources -->
- <!-- Available parameters : -->
- <!-- destination.temp.folder - destination folder -->
- <!-- ===================================================================== -->
- <target name="pre.gather.sources">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do after the target gather.sources -->
- <!-- Available parameters : -->
- <!-- destination.temp.folder - destination folder -->
- <!-- ===================================================================== -->
- <target name="post.gather.sources">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do before the target gather.logs -->
- <!-- Available parameters : -->
- <!-- destination.temp.folder - destination folder -->
- <!-- ===================================================================== -->
- <target name="pre.gather.logs">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do after the target gather.logs -->
- <!-- Available parameters : -->
- <!-- destination.temp.folder - destination folder -->
- <!-- ===================================================================== -->
- <target name="post.gather.logs">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do before the target clean -->
- <!-- Available parameters : -->
- <!-- destination.temp.folder - destination folder -->
- <!-- ===================================================================== -->
- <target name="pre.clean">
- </target>
-
- <!-- ===================================================================== -->
- <!-- Steps to do after the target clean -->
- <!-- Available parameters : -->
- <!-- plugin.destination - final destination of the build -->
- <!-- build.result.folder - results of the compilation -->
- <!-- temp.folder - temporary folder -->
- <!-- ===================================================================== -->
- <target name="post.clean">
- </target>
-
-</project> \ No newline at end of file

Back to the top