Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.egit-feature/feature.xml4
-rw-r--r--org.eclipse.egit/META-INF/MANIFEST.MF4
-rw-r--r--org.eclipse.egit/build.properties3
-rw-r--r--org.eclipse.egit/plugin.properties10
4 files changed, 16 insertions, 5 deletions
diff --git a/org.eclipse.egit-feature/feature.xml b/org.eclipse.egit-feature/feature.xml
index 68a78e3542..89b6d6f6a5 100644
--- a/org.eclipse.egit-feature/feature.xml
+++ b/org.eclipse.egit-feature/feature.xml
@@ -19,8 +19,8 @@
</license>
<url>
- <update label="%updateSiteName" url="http://www.eclipse.org/egit/updates"/>
- <discovery label="%updateSiteName" url="http://www.eclipse.org/egit/updates"/>
+ <update label="%updateSiteName" url="http://download.eclipse.org/egit/updates"/>
+ <discovery label="%updateSiteName" url="http://download.eclipse.org/egit/updates"/>
</url>
<requires>
diff --git a/org.eclipse.egit/META-INF/MANIFEST.MF b/org.eclipse.egit/META-INF/MANIFEST.MF
index cbee233c83..07949b9777 100644
--- a/org.eclipse.egit/META-INF/MANIFEST.MF
+++ b/org.eclipse.egit/META-INF/MANIFEST.MF
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Eclipse Git (Incubation)
+Bundle-Name: %plugin_name
Bundle-SymbolicName: org.eclipse.egit
Bundle-Version: 0.6.0.qualifier
-Bundle-Vendor: eclipse.org
+Bundle-Vendor: %provider_name
Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/org.eclipse.egit/build.properties b/org.eclipse.egit/build.properties
index 28a8cf1fd8..543baab024 100644
--- a/org.eclipse.egit/build.properties
+++ b/org.eclipse.egit/build.properties
@@ -1,4 +1,5 @@
bin.includes = META-INF/,\
egit.png,\
about.html,\
- about.ini
+ about.ini,\
+ plugin.properties
diff --git a/org.eclipse.egit/plugin.properties b/org.eclipse.egit/plugin.properties
new file mode 100644
index 0000000000..66a1ec0f17
--- /dev/null
+++ b/org.eclipse.egit/plugin.properties
@@ -0,0 +1,10 @@
+###############################################################################
+# Copyright (c) 2010, Matthias Sohn <matthias.sohn@sap.com>
+#
+# 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 (Incubation)
+provider_name=Eclipse.org

Back to the top