Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2011-07-04 20:59:34 +0000
committerslewis2011-07-04 20:59:34 +0000
commite7532dc304cd6d182e41d1ae0e26672e0fdd716f (patch)
tree0f57ea32727e866a6f0ca7bcfcceb5ca96c08a84
parent0cd094e57a3e0177649db51e4f0ff29e8438ec42 (diff)
downloadorg.eclipse.ecf-e7532dc304cd6d182e41d1ae0e26672e0fdd716f.tar.gz
org.eclipse.ecf-e7532dc304cd6d182e41d1ae0e26672e0fdd716f.tar.xz
org.eclipse.ecf-e7532dc304cd6d182e41d1ae0e26672e0fdd716f.zip
Fixes for localization/bundle.properties in trivial provider
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.provider.trivial/META-INF/MANIFEST.MF5
-rw-r--r--[-rwxr-xr-x]examples/bundles/org.eclipse.ecf.examples.provider.trivial/build.properties3
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.provider.trivial/bundle.properties12
3 files changed, 17 insertions, 3 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.provider.trivial/META-INF/MANIFEST.MF b/examples/bundles/org.eclipse.ecf.examples.provider.trivial/META-INF/MANIFEST.MF
index c21eb1933..be99f721e 100644
--- a/examples/bundles/org.eclipse.ecf.examples.provider.trivial/META-INF/MANIFEST.MF
+++ b/examples/bundles/org.eclipse.ecf.examples.provider.trivial/META-INF/MANIFEST.MF
@@ -1,10 +1,10 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: ECF Trivial Provider
+Bundle-Name: %bundle.name
Bundle-SymbolicName: org.eclipse.ecf.examples.provider.trivial;singleton:=true
Bundle-Version: 1.0.200.provider
Bundle-Activator: org.eclipse.ecf.internal.examples.provider.trivial.Activator
-Bundle-Vendor: Eclipse.org
+Bundle-Vendor: %bundle.provider
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ecf
Eclipse-LazyStart: true
@@ -15,3 +15,4 @@ Export-Package: org.eclipse.ecf.examples.provider.trivial,
org.eclipse.ecf.examples.provider.trivial.identity,
org.eclipse.ecf.internal.examples.provider.trivial;x-internal:=true,
org.eclipse.ecf.internal.examples.provider.trivial.container;x-internal:=true
+Bundle-Localization: bundle
diff --git a/examples/bundles/org.eclipse.ecf.examples.provider.trivial/build.properties b/examples/bundles/org.eclipse.ecf.examples.provider.trivial/build.properties
index 233c2754e..473c7b3ef 100755..100644
--- a/examples/bundles/org.eclipse.ecf.examples.provider.trivial/build.properties
+++ b/examples/bundles/org.eclipse.ecf.examples.provider.trivial/build.properties
@@ -3,6 +3,7 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
plugin.xml,\
- products/
+ products/,\
+ bundle.properties
jre.compilation.profile = J2SE-1.4
src.includes = products/
diff --git a/examples/bundles/org.eclipse.ecf.examples.provider.trivial/bundle.properties b/examples/bundles/org.eclipse.ecf.examples.provider.trivial/bundle.properties
new file mode 100644
index 000000000..3071af402
--- /dev/null
+++ b/examples/bundles/org.eclipse.ecf.examples.provider.trivial/bundle.properties
@@ -0,0 +1,12 @@
+################################################################################
+# Copyright (c) 2011 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
+################################################################################
+bundle.name=ECF Trivial Provider
+bundle.provider=Eclipse.org - ECF \ No newline at end of file

Back to the top