Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2006-10-25 03:38:52 +0000
committerslewis2006-10-25 03:38:52 +0000
commit106b1bc1e3b1e1871393059f85960f6baaf58b57 (patch)
tree9bf8cba152339bc758d948ee68d3aaa12be5121a /examples/bundles
parent4fde635a9edcdeddcc4af0aac04738ab4ec4dcc0 (diff)
downloadorg.eclipse.ecf-106b1bc1e3b1e1871393059f85960f6baaf58b57.tar.gz
org.eclipse.ecf-106b1bc1e3b1e1871393059f85960f6baaf58b57.tar.xz
org.eclipse.ecf-106b1bc1e3b1e1871393059f85960f6baaf58b57.zip
Major changes to accomodate refactoring of core plugin to separate out shared object classes into new plugin: org.eclipse.ecf.sharedobject. Changed extension point name from org.eclipse.ecf.sharedObjectFactory to org.eclipse.ecf.sharedobject.sharedObjectFactory. Added dependencies on org.eclipse.ecf.sharedobject for plugins that were using API directly (e.g. org.eclipse.ecf.provider and others).
Diffstat (limited to 'examples/bundles')
-rw-r--r--examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF3
-rw-r--r--examples/bundles/org.eclipse.ecf.example.pubsub/META-INF/MANIFEST.MF3
-rw-r--r--examples/bundles/org.eclipse.ecf.example.pubsub/plugin.xml2
-rw-r--r--examples/bundles/org.eclipse.ecf.example.sdo.editor/META-INF/MANIFEST.MF3
-rw-r--r--examples/bundles/org.eclipse.ecf.sdo/META-INF/MANIFEST.MF3
5 files changed, 9 insertions, 5 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF b/examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF
index cfec849a2..35a79e9b1 100644
--- a/examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF
+++ b/examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF
@@ -11,6 +11,7 @@ Eclipse-AutoStart: true
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ecf,
org.eclipse.ecf.presence,
- org.eclipse.ecf.provider.xmpp
+ org.eclipse.ecf.provider.xmpp,
+ org.eclipse.ecf.sharedobject
Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/examples/bundles/org.eclipse.ecf.example.pubsub/META-INF/MANIFEST.MF b/examples/bundles/org.eclipse.ecf.example.pubsub/META-INF/MANIFEST.MF
index 9790095cf..32449b47c 100644
--- a/examples/bundles/org.eclipse.ecf.example.pubsub/META-INF/MANIFEST.MF
+++ b/examples/bundles/org.eclipse.ecf.example.pubsub/META-INF/MANIFEST.MF
@@ -10,7 +10,8 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.ecf;visibility:=reexport,
org.eclipse.core.resources,
- org.eclipse.ecf.example.collab
+ org.eclipse.ecf.example.collab,
+ org.eclipse.ecf.sharedobject
Eclipse-AutoStart: true
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/examples/bundles/org.eclipse.ecf.example.pubsub/plugin.xml b/examples/bundles/org.eclipse.ecf.example.pubsub/plugin.xml
index f6f9f05b6..3c75a8533 100644
--- a/examples/bundles/org.eclipse.ecf.example.pubsub/plugin.xml
+++ b/examples/bundles/org.eclipse.ecf.example.pubsub/plugin.xml
@@ -5,7 +5,7 @@
<extension
point="org.eclipse.core.runtime.adapters">
<factory
- adaptableType="org.eclipse.ecf.core.sharedobject.ISharedObjectContainer"
+ adaptableType="org.eclipse.ecf.sharedobject.ISharedObjectContainer"
class="org.eclipse.ecf.pubsub.impl.PubSubAdapterFactory">
<adapter type="org.eclipse.ecf.pubsub.IPublishedServiceDirectory"/>
<adapter type="org.eclipse.ecf.pubsub.IPublishedServiceRequestor"/>
diff --git a/examples/bundles/org.eclipse.ecf.example.sdo.editor/META-INF/MANIFEST.MF b/examples/bundles/org.eclipse.ecf.example.sdo.editor/META-INF/MANIFEST.MF
index ca2cf422f..b1e7e6768 100644
--- a/examples/bundles/org.eclipse.ecf.example.sdo.editor/META-INF/MANIFEST.MF
+++ b/examples/bundles/org.eclipse.ecf.example.sdo.editor/META-INF/MANIFEST.MF
@@ -12,7 +12,8 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.ecf,
org.eclipse.ecf.sdo,
org.eclipse.emf.ecore.sdo.editor,
- org.eclipse.ecf.example.collab
+ org.eclipse.ecf.example.collab,
+ org.eclipse.ecf.sharedobject
Eclipse-AutoStart: true
Provide-Package: org.eclipse.ecf.example.sdo.editor
Export-Package: org.eclipse.ecf.example.sdo.editor
diff --git a/examples/bundles/org.eclipse.ecf.sdo/META-INF/MANIFEST.MF b/examples/bundles/org.eclipse.ecf.sdo/META-INF/MANIFEST.MF
index 36e7024c4..e9bd48e98 100644
--- a/examples/bundles/org.eclipse.ecf.sdo/META-INF/MANIFEST.MF
+++ b/examples/bundles/org.eclipse.ecf.sdo/META-INF/MANIFEST.MF
@@ -8,7 +8,8 @@ Bundle-Vendor: Eclipse.org
Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.emf.ecore.sdo,
- org.eclipse.ecf
+ org.eclipse.ecf,
+ org.eclipse.ecf.sharedobject
Eclipse-AutoStart: true
Provide-Package: org.eclipse.ecf.sdo,
org.eclipse.ecf.internal.sdo,

Back to the top