Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2006-04-04 13:02:08 +0000
committerThomas Watson2006-04-04 13:02:08 +0000
commitcf36af08a87747c5a49853c690cb796464edf61d (patch)
tree623cdb189b09ac6a1f5abc9cabb3c10f7a46464d
parent8b1287c3702c1ef7ec456beadac1448ca62b597f (diff)
downloadrt.equinox.bundles-cf36af08a87747c5a49853c690cb796464edf61d.tar.gz
rt.equinox.bundles-cf36af08a87747c5a49853c690cb796464edf61d.tar.xz
rt.equinox.bundles-cf36af08a87747c5a49853c690cb796464edf61d.zip
Bug 134083 Avoid use of mandatory:=bundle-symbolic-name
-rw-r--r--bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF4
-rw-r--r--bundles/org.eclipse.equinox.preferences/META-INF/MANIFEST.MF3
-rw-r--r--bundles/org.eclipse.equinox.registry/META-INF/MANIFEST.MF2
3 files changed, 4 insertions, 5 deletions
diff --git a/bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF
index 6300ea4c2..9917dc067 100644
--- a/bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF
@@ -4,9 +4,9 @@ Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.equinox.common; singleton:=true
Bundle-Version: 3.2.0.qualifier
Bundle-Localization: plugin
-Export-Package: org.eclipse.core.internal.runtime;x-friends:="org.eclipse.core.contenttype,org.eclipse.core.jobs,org.eclipse.equinox.preferences,org.eclipse.equinox.registry,org.eclipse.core.runtime,org.eclipse.core.runtime.compatibility"; mandatory:="bundle-symbolic-name",
+Export-Package: org.eclipse.core.internal.runtime;x-friends:="org.eclipse.core.contenttype,org.eclipse.core.jobs,org.eclipse.equinox.preferences,org.eclipse.equinox.registry,org.eclipse.core.runtime,org.eclipse.core.runtime.compatibility"; common="split"; mandatory:="common",
org.eclipse.core.internal.boot;x-friends:="org.eclipse.core.resources,org.eclipse.core.runtime.compatibility,org.eclipse.pde.build",
- org.eclipse.core.runtime; mandatory:="bundle-symbolic-name"
+ org.eclipse.core.runtime; common="split"; mandatory:="common"
Bundle-Vendor: %providerName
Bundle-Activator: org.eclipse.core.internal.runtime.Activator
Import-Package: org.eclipse.osgi.framework.log,
diff --git a/bundles/org.eclipse.equinox.preferences/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.preferences/META-INF/MANIFEST.MF
index 3940e4f36..86e8daa3a 100644
--- a/bundles/org.eclipse.equinox.preferences/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.preferences/META-INF/MANIFEST.MF
@@ -8,8 +8,7 @@ Bundle-Vendor: %providerName
Bundle-Localization: plugin
Require-Bundle: org.eclipse.equinox.common,
org.eclipse.equinox.registry;resolution:=optional
-Export-Package: org.eclipse.core.internal.preferences;x-friends:="org.eclipse.core.resources,
- org.eclipse.core.runtime"; mandatory:="bundle-symbolic-name",
+Export-Package: org.eclipse.core.internal.preferences;x-friends:="org.eclipse.core.resources,org.eclipse.core.runtime"; preferences="split"; mandatory:="preferences",
org.eclipse.core.runtime.preferences,
org.osgi.service.prefs;version="1.1"
Eclipse-LazyStart: true
diff --git a/bundles/org.eclipse.equinox.registry/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.registry/META-INF/MANIFEST.MF
index 555ee938b..8861e9394 100644
--- a/bundles/org.eclipse.equinox.registry/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.registry/META-INF/MANIFEST.MF
@@ -7,7 +7,7 @@ Bundle-Localization: plugin
Export-Package: org.eclipse.core.internal.registry;x-friends:="org.eclipse.core.runtime",
org.eclipse.core.internal.registry.osgi;x-friends:="org.eclipse.core.runtime",
org.eclipse.core.internal.registry.spi;x-internal:=true,
- org.eclipse.core.runtime; mandatory:="bundle-symbolic-name",
+ org.eclipse.core.runtime; registry="split"; mandatory:="registry",
org.eclipse.core.runtime.dynamichelpers,
org.eclipse.core.runtime.spi
Require-Bundle: org.eclipse.equinox.common

Back to the top