Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeronika Irvine2002-05-13 14:56:00 +0000
committerVeronika Irvine2002-05-13 14:56:00 +0000
commit0dab4863e7c132cd37619ec45aeaa3e8071f6df6 (patch)
tree64b487a941f41e9cb541313734a903f31c739b1a /bundles/org.eclipse.swt/build.xml
parentd60e3c3d54abf7e0af1d4ed96782ce5d8096b3b9 (diff)
downloadeclipse.platform.swt-0dab4863e7c132cd37619ec45aeaa3e8071f6df6.tar.gz
eclipse.platform.swt-0dab4863e7c132cd37619ec45aeaa3e8071f6df6.tar.xz
eclipse.platform.swt-0dab4863e7c132cd37619ec45aeaa3e8071f6df6.zip
*** empty log message ***
Diffstat (limited to 'bundles/org.eclipse.swt/build.xml')
-rw-r--r--bundles/org.eclipse.swt/build.xml27
1 files changed, 9 insertions, 18 deletions
diff --git a/bundles/org.eclipse.swt/build.xml b/bundles/org.eclipse.swt/build.xml
index 3a97bb119e..35198e4fae 100644
--- a/bundles/org.eclipse.swt/build.xml
+++ b/bundles/org.eclipse.swt/build.xml
@@ -1,11 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="org.eclipse.swt" default="build.update.jar" basedir=".">
- <target name="initTemplate" unless="template">
- <initTemplate/>
- </target>
-
- <target name="init" depends="initTemplate,properties">
+ <target name="init">
+ <property name="plugin" value="org.eclipse.swt"/>
+ <property name="version" value="2.0.0"/>
</target>
<target name="build.update.jar" depends="init">
@@ -18,17 +16,15 @@
<delete>
<fileset dir="${base}" includes="**/*.bin.log"/>
</delete>
- <zip zipfile="${basedir}/${plugin}_${version}.jar" basedir="${base}/plugins/${plugin}_${version}"/>
+ <zip zipfile="${basedir}/${plugin}_${version}.jar" basedir="${base}/${plugin}_${version}"/>
<delete dir="${base}"/>
</target>
<target name="gather.bin.parts" depends="init" if="destination">
- <ant antfile="${template}" target="includesExcludesCopy">
- <property name="srcdir" value="${basedir}"/>
- <property name="dest" value="${destination}/plugins/${plugin}_${version}"/>
- <property name="excludes" value="${bin.excludes}"/>
- <property name="includes" value="${bin.includes}"/>
- </ant>
+ <mkdir dir="${destination}/${plugin}_${version}"/>
+ <copy todir="${destination}/${plugin}_${version}">
+ <fileset dir="${basedir}" includes="plugin.properties,plugin.xml,about.html" />
+ </copy>
</target>
<target name="build.jars" />
@@ -39,10 +35,5 @@
<target name="clean" depends="init">
</target>
- <target name="properties">
- <property name="plugin" value="org.eclipse.swt"/>
- <property name="version" value="2.0.0"/>
- <property name="bin.includes" value="plugin.properties,plugin.xml,about.html"/>
- </target>
-
+
</project> \ No newline at end of file

Back to the top