Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/bundles/org.eclipse.ecf.example.pubsub/META-INF/MANIFEST.MF7
-rw-r--r--examples/bundles/org.eclipse.ecf.example.pubsub/plugin.properties13
2 files changed, 16 insertions, 4 deletions
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 c8c6f1d40..75b2f5e38 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
@@ -1,10 +1,10 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: ECF Publish/Subscribe Example Plug-in
+Bundle-Name: %plugin.name
Bundle-SymbolicName: org.eclipse.ecf.example.pubsub;singleton:=true
-Bundle-Version: 1.0.0
+Bundle-Version: 1.0.0.v20070313
Bundle-Activator: org.eclipse.ecf.example.pubsub.Activator
-Bundle-Vendor: Eclipse.org
+Bundle-Vendor: %plugin.provider
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
@@ -12,7 +12,6 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.core.resources,
org.eclipse.ecf.example.collab,
org.eclipse.ecf.sharedobject
-Eclipse-AutoStart: true
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: J2SE-1.4,
CDC-1.1/Foundation-1.1
diff --git a/examples/bundles/org.eclipse.ecf.example.pubsub/plugin.properties b/examples/bundles/org.eclipse.ecf.example.pubsub/plugin.properties
new file mode 100644
index 000000000..93b0a118e
--- /dev/null
+++ b/examples/bundles/org.eclipse.ecf.example.pubsub/plugin.properties
@@ -0,0 +1,13 @@
+/****************************************************************************
+* Copyright (c) 2004 Composent, Inc. 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:
+* Composent, Inc. - initial API and implementation
+*****************************************************************************/
+plugin.name=ECF Publish/Subscribe Example
+plugin.provider=Eclipse.org
+

Back to the top