Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Webster2013-11-08 15:38:39 +0000
committerPaul Webster2013-11-08 15:38:39 +0000
commit17d6330e7ba6fb7f7838c09e37f193e791349d5d (patch)
tree54534fc68876c97dfa13693f8c912e0924042f7c
parentc5b4d514548008920aa73f7bfdeea46205b1bdd6 (diff)
downloadeclipse.platform.ui-17d6330e7ba6fb7f7838c09e37f193e791349d5d.tar.gz
eclipse.platform.ui-17d6330e7ba6fb7f7838c09e37f193e791349d5d.tar.xz
eclipse.platform.ui-17d6330e7ba6fb7f7838c09e37f193e791349d5d.zip
Bug 421344 - [Themes] fix up o.e.ui.images structure
Update the manifest.
-rw-r--r--bundles/org.eclipse.ui.images/.classpath3
-rw-r--r--bundles/org.eclipse.ui.images/.settings/org.eclipse.jdt.core.prefs6
-rw-r--r--bundles/org.eclipse.ui.images/META-INF/MANIFEST.MF5
-rw-r--r--bundles/org.eclipse.ui.images/build.properties1
-rw-r--r--bundles/org.eclipse.ui.images/plugin.properties13
5 files changed, 22 insertions, 6 deletions
diff --git a/bundles/org.eclipse.ui.images/.classpath b/bundles/org.eclipse.ui.images/.classpath
index 67e2a52cbdf..64c5e31b7a2 100644
--- a/bundles/org.eclipse.ui.images/.classpath
+++ b/bundles/org.eclipse.ui.images/.classpath
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/bundles/org.eclipse.ui.images/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.ui.images/.settings/org.eclipse.jdt.core.prefs
index f42de363afa..af0f20f97a5 100644
--- a/bundles/org.eclipse.ui.images/.settings/org.eclipse.jdt.core.prefs
+++ b/bundles/org.eclipse.ui.images/.settings/org.eclipse.jdt.core.prefs
@@ -1,7 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
-org.eclipse.jdt.core.compiler.compliance=1.7
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.source=1.7
+org.eclipse.jdt.core.compiler.source=1.5
diff --git a/bundles/org.eclipse.ui.images/META-INF/MANIFEST.MF b/bundles/org.eclipse.ui.images/META-INF/MANIFEST.MF
index d4a8b8bf0fb..994181129ea 100644
--- a/bundles/org.eclipse.ui.images/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.ui.images/META-INF/MANIFEST.MF
@@ -1,6 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Images
+Bundle-Name: %Plugin.name
Bundle-SymbolicName: org.eclipse.ui.images
Bundle-Version: 1.0.0.qualifier
-Bundle-RequiredExecutionEnvironment: JavaSE-1.7
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Vendor: %Plugin.providerName
diff --git a/bundles/org.eclipse.ui.images/build.properties b/bundles/org.eclipse.ui.images/build.properties
index 9e423ca5cba..ba7c8b56e23 100644
--- a/bundles/org.eclipse.ui.images/build.properties
+++ b/bundles/org.eclipse.ui.images/build.properties
@@ -8,3 +8,4 @@ bin.includes = META-INF/,\
eclipse.platform/,\
eclipse.platform.team/,\
eclipse.platform.ui/
+src.includes = eclipse-svg/
diff --git a/bundles/org.eclipse.ui.images/plugin.properties b/bundles/org.eclipse.ui.images/plugin.properties
new file mode 100644
index 00000000000..4233f901296
--- /dev/null
+++ b/bundles/org.eclipse.ui.images/plugin.properties
@@ -0,0 +1,13 @@
+###############################################################################
+# Copyright (c) 2013 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
+###############################################################################
+Plugin.name = Eclipse UI Image Resources
+Plugin.providerName = Eclipse.org
+

Back to the top