Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2001-09-26 12:08:58 +0000
committerDarin Wright2001-09-26 12:08:58 +0000
commit317d139f2762411a3cb72db5d19fafecef59e9e0 (patch)
treef7dfa73f9a8fc879118d7f4c966213687912facf /org.eclipse.debug.ui/scripts
parentd5129c8ea657da8f0892099ebb383a0f89dbfab6 (diff)
downloadeclipse.platform.debug-317d139f2762411a3cb72db5d19fafecef59e9e0.tar.gz
eclipse.platform.debug-317d139f2762411a3cb72db5d19fafecef59e9e0.tar.xz
eclipse.platform.debug-317d139f2762411a3cb72db5d19fafecef59e9e0.zip
ant script updatesv201-09-26-01
Diffstat (limited to 'org.eclipse.debug.ui/scripts')
-rw-r--r--org.eclipse.debug.ui/scripts/exportplugin.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/scripts/exportplugin.xml b/org.eclipse.debug.ui/scripts/exportplugin.xml
new file mode 100644
index 000000000..35191550c
--- /dev/null
+++ b/org.eclipse.debug.ui/scripts/exportplugin.xml
@@ -0,0 +1,36 @@
+<!-- Export a jar of .class files for the org.eclipse.debug.ui Eclipse plugin
+ along with other important plugin files to the "plugin-export" subdirectory
+ of the target Eclipse installation -->
+<project name="org.eclipse.debug.ui" default="export" basedir=".">
+
+ <!-- Set the timestamp and important properties -->
+ <target name="init">
+ <tstamp/>
+ <property name="destdir" value="../../../plugin-export" />
+ <property name="dest" value="${destdir}/org.eclipse.debug.ui" />
+ </target>
+
+ <!-- Create the jar of .class files, and copy other important files to export dir -->
+ <target name="export" depends="init">
+ <mkdir dir="${destdir}" />
+ <delete dir="${dest}" />
+ <mkdir dir="${dest}" />
+ <jar
+ jarfile="${dest}/dtui.jar"
+ basedir="../bin"
+ />
+ <!-- Create the source zip -->
+ <zip zipfile="${dest}/dtuisrc.zip">
+ <fileset dir="../Eclipse Debug UI"/>
+ </zip>
+ <copy file="../plugin.xml" todir="${dest}"/>
+ <copy file="../plugin.jars" todir="${dest}"/>
+ <copy file="../plugin.properties" todir="${dest}"/>
+ <copy file="../.classpath" todir="${dest}"/>
+ <copy file="../.options" todir="${dest}"/>
+ <copy todir="${dest}/icons">
+ <fileset dir="../icons" />
+ </copy>
+ </target>
+
+</project>

Back to the top