Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2014-01-21 16:28:54 +0000
committerGerrit Code Review @ Eclipse.org2014-01-28 16:10:42 +0000
commitfedcffa9658e56b549d079cbfd6be821aace83c8 (patch)
tree19b0e97970c7590c43ef3db79ad988d1b0d44c85 /org.eclipse.ui.examples.javaeditor
parent4ef89d4b16a3562d88191be48b872d3eabf0da9e (diff)
downloadeclipse.platform.text-fedcffa9658e56b549d079cbfd6be821aace83c8.tar.gz
eclipse.platform.text-fedcffa9658e56b549d079cbfd6be821aace83c8.tar.xz
eclipse.platform.text-fedcffa9658e56b549d079cbfd6be821aace83c8.zip
Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=419531 Signed-off-by: Mickael Istria <mistria@redhat.com> Change-Id: I1316e72a4d058735c4fff892dfe985fed0f7b31e
Diffstat (limited to 'org.eclipse.ui.examples.javaeditor')
-rw-r--r--org.eclipse.ui.examples.javaeditor/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.ui.examples.javaeditor/build.properties15
2 files changed, 6 insertions, 11 deletions
diff --git a/org.eclipse.ui.examples.javaeditor/META-INF/MANIFEST.MF b/org.eclipse.ui.examples.javaeditor/META-INF/MANIFEST.MF
index a1847d1c5b1..3b0fab876cc 100644
--- a/org.eclipse.ui.examples.javaeditor/META-INF/MANIFEST.MF
+++ b/org.eclipse.ui.examples.javaeditor/META-INF/MANIFEST.MF
@@ -3,8 +3,6 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.ui.examples.javaeditor; singleton:=true
Bundle-Version: 3.1.400.qualifier
-Bundle-ClassPath: javaeditorexample.jar,
- templateeditorexample.jar
Bundle-Activator: org.eclipse.ui.examples.javaeditor.JavaEditorExamplePlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/org.eclipse.ui.examples.javaeditor/build.properties b/org.eclipse.ui.examples.javaeditor/build.properties
index 8fd9b662187..41b71ade6f3 100644
--- a/org.eclipse.ui.examples.javaeditor/build.properties
+++ b/org.eclipse.ui.examples.javaeditor/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2010 IBM Corporation and others.
+# Copyright (c) 2000, 2014 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
@@ -7,12 +7,12 @@
#
# Contributors:
# IBM Corporation - initial API and implementation
+# Mickael Istria (Red Hat Inc.) - 419531 Get rid of nested jars
###############################################################################
-source.javaeditorexample.jar = Eclipse Java Editor Example/
-source.templateeditorexample.jar = Template Editor Example/
+source.. = Eclipse Java Editor Example/,\
+ Template Editor Example/
-output.javaeditorexample.jar = javaEditorBin/
-output.templateeditorexample.jar = templateEditorBin/
+output.. = bin/
bin.includes = doc-html/,\
icons/,\
@@ -20,10 +20,7 @@ bin.includes = doc-html/,\
about.html,\
plugin.properties,\
plugin.xml,\
- *.jar,\
+ .,\
META-INF/
-jars.compile.order = javaeditorexample.jar,\
- templateeditorexample.jar
-
src.includes = about.html

Back to the top