Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce2010-01-23 19:40:31 +0000
committerShawn O. Pearce2010-01-23 19:42:15 +0000
commit0238a21b624abf079ae21835a13067d2c8dedd81 (patch)
tree6066f805be44f4ffc76fdfdeb78c1bce13748127 /org.eclipse.jgit.http.test
parent927437ce3aad331a6982f9e25a65a600a5f12b4a (diff)
downloadjgit-0238a21b624abf079ae21835a13067d2c8dedd81.tar.gz
jgit-0238a21b624abf079ae21835a13067d2c8dedd81.tar.xz
jgit-0238a21b624abf079ae21835a13067d2c8dedd81.zip
Correct bundle, provider names to be consistent
Technically our project name is "JGit", not "Java Git". In fact there is already another project called "JavaGit" (no space) that we don't want to become confused with. Ensure we always call ourselves "JGit" in user visible assets, like the bundle name. Other Eclipse products list their provider as "Eclipse.org", not "eclipse.org". So list ourselves that way in all of our plugin.properties files. Change-Id: Ibcea1cd6dda2af757a8584099619fc23b7779a84 Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit.http.test')
-rw-r--r--org.eclipse.jgit.http.test/META-INF/MANIFEST.MF5
-rw-r--r--org.eclipse.jgit.http.test/plugin.properties2
2 files changed, 5 insertions, 2 deletions
diff --git a/org.eclipse.jgit.http.test/META-INF/MANIFEST.MF b/org.eclipse.jgit.http.test/META-INF/MANIFEST.MF
index 01982da6c5..1481391f52 100644
--- a/org.eclipse.jgit.http.test/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit.http.test/META-INF/MANIFEST.MF
@@ -1,9 +1,10 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Java Git HTTP Tests (Incubation)
+Bundle-Name: %plugin_name
Bundle-SymbolicName: org.eclipse.jgit.http.test
Bundle-Version: 0.6.0.qualifier
-Bundle-Vendor: Eclipse.org
+Bundle-Vendor: %provider_name
+Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Import-Package: javax.servlet;version="2.5.0",
javax.servlet.http;version="2.5.0",
diff --git a/org.eclipse.jgit.http.test/plugin.properties b/org.eclipse.jgit.http.test/plugin.properties
new file mode 100644
index 0000000000..d0e3a61cfe
--- /dev/null
+++ b/org.eclipse.jgit.http.test/plugin.properties
@@ -0,0 +1,2 @@
+plugin_name=JGit HTTP Tests (Incubation)
+provider_name=Eclipse.org

Back to the top