Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Hohenegger2015-05-16 17:39:39 +0000
committerMatthias Sohn2015-05-18 21:08:55 +0000
commitaf9f7d03e94e2dc813226c4df4cae73b97053c72 (patch)
tree7ff754356d2b0abf21cd85caa148965b6fbee676 /org.eclipse.egit.gitflow
parent4558da7a8d900efe2e2c434ef4dac1685d12eca0 (diff)
downloadegit-af9f7d03e94e2dc813226c4df4cae73b97053c72.tar.gz
egit-af9f7d03e94e2dc813226c4df4cae73b97053c72.tar.xz
egit-af9f7d03e94e2dc813226c4df4cae73b97053c72.zip
[gitflow] fixed build warnings
- bundle localization [...] not found - Bundle-Vendor header not found [...] - improve feature name to ensure end users can understand it Bug: 348610 Change-Id: Ic6df8686f5d5c552c2a0f44fa53b7b28c359be1b Signed-off-by: Max Hohenegger <eclipse@hohenegger.eu> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.gitflow')
-rw-r--r--org.eclipse.egit.gitflow/META-INF/MANIFEST.MF4
-rw-r--r--org.eclipse.egit.gitflow/build.properties3
-rw-r--r--org.eclipse.egit.gitflow/plugin.properties10
3 files changed, 15 insertions, 2 deletions
diff --git a/org.eclipse.egit.gitflow/META-INF/MANIFEST.MF b/org.eclipse.egit.gitflow/META-INF/MANIFEST.MF
index 8f9d00abfb..5b1577c4ac 100644
--- a/org.eclipse.egit.gitflow/META-INF/MANIFEST.MF
+++ b/org.eclipse.egit.gitflow/META-INF/MANIFEST.MF
@@ -1,11 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Gitflow
+Bundle-Name: %plugin_name
Bundle-SymbolicName: org.eclipse.egit.gitflow
Bundle-Version: 4.0.0.qualifier
+Bundle-Vendor: %provider_name
Bundle-Activator: org.eclipse.egit.gitflow.Activator
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Bundle-ActivationPolicy: lazy
+Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources
Export-Package: org.eclipse.egit.gitflow;version="4.0.0",
diff --git a/org.eclipse.egit.gitflow/build.properties b/org.eclipse.egit.gitflow/build.properties
index a6790b8bf0..25c6e707c1 100644
--- a/org.eclipse.egit.gitflow/build.properties
+++ b/org.eclipse.egit.gitflow/build.properties
@@ -2,4 +2,5 @@ source.. = src/
bin.includes = META-INF/,\
.,\
build.properties,\
- about.html
+ about.html,\
+ plugin.properties
diff --git a/org.eclipse.egit.gitflow/plugin.properties b/org.eclipse.egit.gitflow/plugin.properties
new file mode 100644
index 0000000000..566afeb03e
--- /dev/null
+++ b/org.eclipse.egit.gitflow/plugin.properties
@@ -0,0 +1,10 @@
+###############################################################################
+# Copyright (C) 2015, Max Hohenegger <eclipse@hohenegger.eu>
+#
+# 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
+###############################################################################
+plugin_name=Git Team Provider - Gitflow support
+provider_name=Eclipse EGit \ No newline at end of file

Back to the top