Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2013-05-08 09:37:55 +0000
committerMatthias Sohn2013-05-08 12:49:48 +0000
commit4c18cb9905dc43d70cf6f0e5e072c765bca51542 (patch)
tree8d67141c3aec857cd544d11f0a447e9e592e6c58 /org.eclipse.mylyn.github.core
parent898395f524f813e2cfd8eecabfac4ba9366ed889 (diff)
downloadegit-github-4c18cb9905dc43d70cf6f0e5e072c765bca51542.tar.gz
egit-github-4c18cb9905dc43d70cf6f0e5e072c765bca51542.tar.xz
egit-github-4c18cb9905dc43d70cf6f0e5e072c765bca51542.zip
Adapt github connector to compile against jgit/egit 3.0
Also flip github connectors own version to 3.0 since our simple release process isn't able to cope with different versions for jgit/egit and egit-github. Change-Id: If099a7a0f8176d6a3e2c09a5709d906dad8f2620 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.mylyn.github.core')
-rw-r--r--org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF24
-rw-r--r--org.eclipse.mylyn.github.core/pom.xml2
2 files changed, 13 insertions, 13 deletions
diff --git a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
index 87cf48bc..287bbc86 100644
--- a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
+++ b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF
@@ -3,20 +3,20 @@ Bundle-Localization: plugin
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.mylyn.github.core;singleton:=true
-Bundle-Version: 2.4.0.qualifier
+Bundle-Version: 3.0.0.qualifier
Bundle-Vendor: %providerName
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Export-Package: org.eclipse.mylyn.internal.github.core;version="2.4.0";x-friends:="org.eclipse.mylyn.github.ui",
- org.eclipse.mylyn.internal.github.core.gist;version="2.4.0";x-friends:="org.eclipse.mylyn.github.ui",
- org.eclipse.mylyn.internal.github.core.issue;version="2.4.0";x-friends:="org.eclipse.mylyn.github.ui",
- org.eclipse.mylyn.internal.github.core.pr;version="2.4.0";x-friends:="org.eclipse.mylyn.github.ui"
+Export-Package: org.eclipse.mylyn.internal.github.core;version="3.0.0";x-friends:="org.eclipse.mylyn.github.ui",
+ org.eclipse.mylyn.internal.github.core.gist;version="3.0.0";x-friends:="org.eclipse.mylyn.github.ui",
+ org.eclipse.mylyn.internal.github.core.issue;version="3.0.0";x-friends:="org.eclipse.mylyn.github.ui",
+ org.eclipse.mylyn.internal.github.core.pr;version="3.0.0";x-friends:="org.eclipse.mylyn.github.ui"
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.5.0,4.0.0)",
org.eclipse.mylyn.tasks.core;bundle-version="[3.4.0,4.0.0)",
org.eclipse.mylyn.commons.net;bundle-version="[3.4.0,4.0.0)"
-Import-Package: org.eclipse.egit.core;version="[2.4.0,2.5.0)",
- org.eclipse.egit.github.core;version="[2.4.0,2.5.0)",
- org.eclipse.egit.github.core.client;version="[2.4.0,2.5.0)",
- org.eclipse.egit.github.core.service;version="[2.4.0,2.5.0)",
- org.eclipse.egit.github.core.util;version="[2.4.0,2.5.0)",
- org.eclipse.jgit.lib;version="[2.4.0,2.5.0)",
- org.eclipse.jgit.transport;version="[2.4.0,2.5.0)"
+Import-Package: org.eclipse.egit.core;version="[3.0.0,3.1.0)",
+ org.eclipse.egit.github.core;version="[3.0.0,3.1.0)",
+ org.eclipse.egit.github.core.client;version="[3.0.0,3.1.0)",
+ org.eclipse.egit.github.core.service;version="[3.0.0,3.1.0)",
+ org.eclipse.egit.github.core.util;version="[3.0.0,3.1.0)",
+ org.eclipse.jgit.lib;version="[3.0.0,3.1.0)",
+ org.eclipse.jgit.transport;version="[3.0.0,3.1.0)"
diff --git a/org.eclipse.mylyn.github.core/pom.xml b/org.eclipse.mylyn.github.core/pom.xml
index 3e1de75b..ace4c17e 100644
--- a/org.eclipse.mylyn.github.core/pom.xml
+++ b/org.eclipse.mylyn.github.core/pom.xml
@@ -15,7 +15,7 @@
<parent>
<groupId>org.eclipse.mylyn.github</groupId>
<artifactId>github-parent</artifactId>
- <version>2.4.0-SNAPSHOT</version>
+ <version>3.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Back to the top