Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/scripts/export-batch-jdtcom.xml')
-rw-r--r--org.eclipse.jdt.core/scripts/export-batch-jdtcom.xml12
1 files changed, 10 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core/scripts/export-batch-jdtcom.xml b/org.eclipse.jdt.core/scripts/export-batch-jdtcom.xml
index 44359240..742ef032 100644
--- a/org.eclipse.jdt.core/scripts/export-batch-jdtcom.xml
+++ b/org.eclipse.jdt.core/scripts/export-batch-jdtcom.xml
@@ -16,10 +16,18 @@
<mkdir dir="${dest}" />
<echo message="UPDATE jdtcom.jar" />
- <jar
+ <zip zipfile="${dest}/jdtcom.jar">
+ <fileset dir=".">
+ <include name="META-INF/**" />
+ </fileset>
+ <fileset dir="bin" includes="org/eclipse/jdt/internal/compiler/**,org/eclipse/jdt/core/compiler/**"/>
+ </zip>
+<!-- <jar
jarfile="${dest}/jdtcom.jar"
basedir="bin"
- includes="org/eclipse/jdt/internal/compiler/**,org/eclipse/jdt/core/compiler/**" />
+ includes="org/eclipse/jdt/internal/compiler/**,org/eclipse/jdt/core/compiler/**"
+ manifest="META-INF/MANIFEST.MF"
+ index="true"/> -->
<echo message="UPDATE jdtcomsrc.zip" />
<zip zipfile="${dest}/jdtcomsrc.zip">

Back to the top