From 319274e83d11e9b6ed8d8892cad25093bb7e0090 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Fri, 27 Jan 2012 10:16:55 +0100 Subject: Update .eclipse_iplog for 1.3.0 Usage of Apache HTTP client was removed in the following changes - ca40854c Drop dependency on Apache HttpComponents (HC) - 6f3bc9c4 Remove Apache HttpComponents dependency from tests - 65ed388d Remove dependencies on Apache HttpComponents - 7478f4aa Remove no longer needed dependency to org.apache.http - b429472a Update README for changes to build and dependencies Hence we can remove this dependency from the IP log. Change-Id: I21cd2b088352a28819ebe39e66f54bf8d9a4df34 Signed-off-by: Matthias Sohn --- .eclipse_iplog | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.eclipse_iplog b/.eclipse_iplog index b771304e..7fedb456 100644 --- a/.eclipse_iplog +++ b/.eclipse_iplog @@ -7,11 +7,6 @@ [consumes "technology.jgit"] name = JGit - version = 1.2.0 + version = 1.3.0 license = Eclipse Distribution License v1.0 -[CQ "5162"] - description = jakarta-httpclient-4.1 (PB Orbit CQ4840) - license = Apache License, 2.0 - use = unmodified source & binary - state = approved -- cgit v1.2.3 From c1f3a09f0a9f9e59a433041bdc50def029c24fdb Mon Sep 17 00:00:00 2001 From: Stefan Lay Date: Mon, 30 Jan 2012 15:09:21 -0800 Subject: Add the RepositorySearchWizardPage to the EGit import wizard In this first version we just clone the repository without further configuration. Change-Id: Ia1fb391dfc18771c51a9727d7946f53403c5a3bb Signed-off-by: Stefan Lay Signed-off-by: Kevin Sawicki --- org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF | 1 + org.eclipse.mylyn.github.ui/plugin.xml | 11 +++++++++ .../github/ui/RepositorySearchWizardPage.java | 26 +++++++++++++++++++--- 3 files changed, 35 insertions(+), 3 deletions(-) mode change 100755 => 100644 org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/RepositorySearchWizardPage.java diff --git a/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF index e9f08270..4a22e8ea 100644 --- a/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF @@ -36,6 +36,7 @@ Import-Package: org.eclipse.egit.core;version="[1.3.0,1.4.0)", org.eclipse.egit.ui.internal.branch;version="[1.3.0,1.4.0)", org.eclipse.egit.ui.internal.commit;version="[1.3.0,1.4.0)", org.eclipse.egit.ui.internal.fetch;version="[1.3.0,1.4.0)", + org.eclipse.egit.ui.internal.provisional.wizards;version="[1.3.0,1.4.0)", org.eclipse.egit.ui.internal.pull;version="[1.3.0,1.4.0)", org.eclipse.jgit.errors;version="[1.3.0,1.4.0)", org.eclipse.jgit.lib;version="[1.3.0,1.4.0)", diff --git a/org.eclipse.mylyn.github.ui/plugin.xml b/org.eclipse.mylyn.github.ui/plugin.xml index 2dd024ea..724ec315 100644 --- a/org.eclipse.mylyn.github.ui/plugin.xml +++ b/org.eclipse.mylyn.github.ui/plugin.xml @@ -295,4 +295,15 @@ icon="platform:/plugin/org.eclipse.egit.ui/icons/obj16/rebase.gif"> + + + + + + diff --git a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/RepositorySearchWizardPage.java b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/RepositorySearchWizardPage.java old mode 100755 new mode 100644 index 7fae81f4..fe92cf35 --- a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/RepositorySearchWizardPage.java +++ b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/RepositorySearchWizardPage.java @@ -18,12 +18,16 @@ import java.util.List; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.egit.github.core.Language; +import org.eclipse.egit.github.core.Repository; import org.eclipse.egit.github.core.SearchRepository; import org.eclipse.egit.github.core.client.GitHubClient; import org.eclipse.egit.github.core.client.IGitHubConstants; import org.eclipse.egit.github.core.service.RepositoryService; import org.eclipse.egit.github.core.util.UrlUtils; import org.eclipse.egit.ui.UIIcons; +import org.eclipse.egit.ui.internal.provisional.wizards.GitRepositoryInfo; +import org.eclipse.egit.ui.internal.provisional.wizards.IRepositorySearchResult; +import org.eclipse.egit.ui.internal.provisional.wizards.NoRepositoryInfoException; import org.eclipse.jface.layout.GridDataFactory; import org.eclipse.jface.layout.GridLayoutFactory; import org.eclipse.jface.operation.IRunnableWithProgress; @@ -39,6 +43,7 @@ import org.eclipse.jface.viewers.StructuredSelection; import org.eclipse.jface.viewers.StyledString; import org.eclipse.jface.viewers.TableViewer; import org.eclipse.jface.wizard.WizardPage; +import org.eclipse.mylyn.internal.github.core.GitHub; import org.eclipse.mylyn.internal.github.core.GitHubException; import org.eclipse.swt.SWT; import org.eclipse.swt.events.ModifyEvent; @@ -56,7 +61,8 @@ import org.eclipse.ui.PlatformUI; /** * Search for GitHub repositories wizard page. */ -public class RepositorySearchWizardPage extends WizardPage { +@SuppressWarnings("restriction") +public class RepositorySearchWizardPage extends WizardPage implements IRepositorySearchResult { private SearchRepository[] repositories = null; @@ -69,9 +75,9 @@ public class RepositorySearchWizardPage extends WizardPage { private Text searchText; /** - * + * */ - protected RepositorySearchWizardPage() { + public RepositorySearchWizardPage() { super("repoSearchPage", Messages.RepositorySearchWizardPage_Title, null); //$NON-NLS-1$ setDescription(Messages.RepositorySearchWizardPage_Description); setPageComplete(false); @@ -285,4 +291,18 @@ public class RepositorySearchWizardPage extends WizardPage { GitHubUi.logError(e); } } + + public GitRepositoryInfo getGitRepositoryInfo() throws NoRepositoryInfoException { + GitHubClient client = GitHub + .configureClient(new GitHubClient()); + RepositoryService service = new RepositoryService(client); + String cloneUrl = null; + try { + Repository fullRepo = service.getRepository(repositories[0]); + cloneUrl = fullRepo.getCloneUrl(); + } catch (IOException e) { + throw new NoRepositoryInfoException(e.getMessage(), e); + } + return new GitRepositoryInfo(cloneUrl); + } } -- cgit v1.2.3 From 467a3e84a86fa8d19109d9bf4ddb61cedb59ea71 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Thu, 9 Feb 2012 11:29:13 -0800 Subject: Update build to use the Indigo SR2 orbit repository This was requested on the cross list for Indigo SR2 builds [1]. [1] http://dev.eclipse.org/mhonarc/lists/cross-project-issues-dev/msg07166.html Change-Id: I4fbe4f328044b4fc1ff1a861aa14dc117afcdd7a Signed-off-by: Matthias Sohn Signed-off-by: Kevin Sawicki --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b80f1cf7..7f0fb6ea 100644 --- a/pom.xml +++ b/pom.xml @@ -45,7 +45,7 @@ indigo http://download.eclipse.org/tools/mylyn/update/weekly http://download.eclipse.org/releases/${platform-version-name} - http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository + http://download.eclipse.org/tools/orbit/downloads/drops/R20120119162704/repository /home/data/httpd/download.eclipse.org/egit/github/updates-nightly -- cgit v1.2.3 From 056626f17e1fd11b80d11366d12311110ce2e2b7 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 9 Feb 2012 16:51:04 -0800 Subject: Support editing specific repository fields only This overloads RepositoryService.editRepository to take a map of the fields that should be changed on the repository Bug: 371062 Change-Id: Ie13a22b6af795c58d30858c493436c51ff864e3a --- .../github/core/tests/RepositoryServiceTest.java | 50 ++++++++++++++++++++++ .../github/core/service/RepositoryService.java | 43 +++++++++++++++++++ 2 files changed, 93 insertions(+) diff --git a/org.eclipse.egit.github.core.tests/src/org/eclipse/egit/github/core/tests/RepositoryServiceTest.java b/org.eclipse.egit.github.core.tests/src/org/eclipse/egit/github/core/tests/RepositoryServiceTest.java index 46cab454..8e66be6b 100644 --- a/org.eclipse.egit.github.core.tests/src/org/eclipse/egit/github/core/tests/RepositoryServiceTest.java +++ b/org.eclipse.egit.github.core.tests/src/org/eclipse/egit/github/core/tests/RepositoryServiceTest.java @@ -17,6 +17,8 @@ import static org.mockito.Mockito.verify; import java.io.IOException; import java.util.Collections; +import java.util.HashMap; +import java.util.Map; import org.eclipse.egit.github.core.Repository; import org.eclipse.egit.github.core.RepositoryHook; @@ -116,6 +118,54 @@ public class RepositoryServiceTest { verify(client).post("/repos/o/n", repo, Repository.class); } + /** + * Edit repository with fields + * + * @throws IOException + */ + @Test(expected = IllegalArgumentException.class) + public void editRepositoryWithNullFields() throws IOException { + service.editRepository("o", "n", null); + } + + /** + * Edit repository with fields + * + * @throws IOException + */ + @Test + public void editRepositoryWithFields() throws IOException { + Map fields = new HashMap(); + fields.put("has_issues", true); + fields.put("homepage", "test://address"); + service.editRepository("o", "n", fields); + verify(client).post("/repos/o/n", fields, Repository.class); + } + + /** + * Edit repository with fields + * + * @throws IOException + */ + @Test(expected = IllegalArgumentException.class) + public void editRepositoryProviderWithNullFields() throws IOException { + service.editRepository(repo, null); + } + + /** + * Edit repository with fields + * + * @throws IOException + */ + @Test + public void editRepositoryProviderWithFields() throws IOException { + Map fields = new HashMap(); + fields.put("has_issues", true); + fields.put("homepage", "test://address"); + service.editRepository(repo, fields); + verify(client).post("/repos/o/n", fields, Repository.class); + } + /** * Create repository with null organization name * diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java index e35cf5f2..7e9dae70 100644 --- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java +++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java @@ -699,6 +699,49 @@ public class RepositoryService extends GitHubService { return client.post(uri.toString(), repository, Repository.class); } + /** + * Edit given fields in repository + *

+ * Only values in the given fields map will be updated on the repository + * + * @param owner + * @param name + * @param fields + * @return edited repository + * @throws IOException + */ + public Repository editRepository(String owner, String name, + Map fields) throws IOException { + verifyRepository(owner, name); + if (fields == null) + throw new IllegalArgumentException("Fields cannot be null"); //$NON-NLS-1$ + + StringBuilder uri = new StringBuilder(SEGMENT_REPOS); + uri.append('/').append(owner).append('/').append(name); + return client.post(uri.toString(), fields, Repository.class); + } + + /** + * Edit given fields in repository + *

+ * Only values in the given fields map will be updated on the repository + * + * @param provider + * @param fields + * @return edited repository + * @throws IOException + */ + public Repository editRepository(IRepositoryIdProvider provider, + Map fields) throws IOException { + String id = getId(provider); + if (fields == null) + throw new IllegalArgumentException("Fields cannot be null"); //$NON-NLS-1$ + + StringBuilder uri = new StringBuilder(SEGMENT_REPOS); + uri.append('/').append(id); + return client.post(uri.toString(), fields, Repository.class); + } + /** * Fork given repository into new repository under the currently * authenticated user. -- cgit v1.2.3 From 05a432b4c08c353a559caa2ab3882ef7d36ad1da Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Mon, 13 Feb 2012 01:44:46 +0100 Subject: EGit GitHub 1.3.0.201202121842-rc4 Change-Id: I5f1573a4faad7f796bf6fb9df582dbbeb9a45272 Signed-off-by: Matthias Sohn --- org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF | 2 +- org.eclipse.egit.github.core.tests/pom.xml | 2 +- org.eclipse.egit.github.core/META-INF/MANIFEST.MF | 2 +- org.eclipse.egit.github.core/pom-jar.xml | 2 +- org.eclipse.egit.github.core/pom.xml | 2 +- org.eclipse.mylyn.github-feature/feature.xml | 2 +- org.eclipse.mylyn.github-feature/pom.xml | 2 +- org.eclipse.mylyn.github-site/pom.xml | 2 +- org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF | 2 +- org.eclipse.mylyn.github.core/pom.xml | 2 +- org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF | 2 +- org.eclipse.mylyn.github.doc/pom.xml | 2 +- org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF | 2 +- org.eclipse.mylyn.github.tests/pom.xml | 2 +- org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF | 2 +- org.eclipse.mylyn.github.ui/pom.xml | 2 +- pom.xml | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF b/org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF index c03eb907..8e1bb840 100644 --- a/org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF +++ b/org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.egit.github.core.tests -Bundle-Version: 1.3.0.qualifier +Bundle-Version: 1.3.0.201202121842-rc4 Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: J2SE-1.5 Import-Package: com.google.gson;version="[1.6.0,2.0.0)", diff --git a/org.eclipse.egit.github.core.tests/pom.xml b/org.eclipse.egit.github.core.tests/pom.xml index fbabc29c..a25ad5a9 100644 --- a/org.eclipse.egit.github.core.tests/pom.xml +++ b/org.eclipse.egit.github.core.tests/pom.xml @@ -16,7 +16,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 org.eclipse.egit.github.core.tests diff --git a/org.eclipse.egit.github.core/META-INF/MANIFEST.MF b/org.eclipse.egit.github.core/META-INF/MANIFEST.MF index f9599683..df1f17a9 100644 --- a/org.eclipse.egit.github.core/META-INF/MANIFEST.MF +++ b/org.eclipse.egit.github.core/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-Localization: plugin Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.egit.github.core -Bundle-Version: 1.3.0.qualifier +Bundle-Version: 1.3.0.201202121842-rc4 Bundle-Vendor: %providerName Bundle-RequiredExecutionEnvironment: J2SE-1.5 Import-Package: com.google.gson;version="[1.6.0,2.0.0)", diff --git a/org.eclipse.egit.github.core/pom-jar.xml b/org.eclipse.egit.github.core/pom-jar.xml index 7ff0967d..a16fea73 100644 --- a/org.eclipse.egit.github.core/pom-jar.xml +++ b/org.eclipse.egit.github.core/pom-jar.xml @@ -5,7 +5,7 @@ org.eclipse.mylyn.github org.eclipse.egit.github.core - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 org.sonatype.oss diff --git a/org.eclipse.egit.github.core/pom.xml b/org.eclipse.egit.github.core/pom.xml index 58b2ffff..7a8d6626 100644 --- a/org.eclipse.egit.github.core/pom.xml +++ b/org.eclipse.egit.github.core/pom.xml @@ -15,7 +15,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 4.0.0 diff --git a/org.eclipse.mylyn.github-feature/feature.xml b/org.eclipse.mylyn.github-feature/feature.xml index bb50e3a8..5bbf5d23 100644 --- a/org.eclipse.mylyn.github-feature/feature.xml +++ b/org.eclipse.mylyn.github-feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/org.eclipse.mylyn.github-feature/pom.xml b/org.eclipse.mylyn.github-feature/pom.xml index 0f5b61c8..03eaf2d0 100644 --- a/org.eclipse.mylyn.github-feature/pom.xml +++ b/org.eclipse.mylyn.github-feature/pom.xml @@ -14,7 +14,7 @@ github-parent org.eclipse.mylyn.github - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 4.0.0 org.eclipse.mylyn.github.feature diff --git a/org.eclipse.mylyn.github-site/pom.xml b/org.eclipse.mylyn.github-site/pom.xml index 4c253665..2c921fb4 100644 --- a/org.eclipse.mylyn.github-site/pom.xml +++ b/org.eclipse.mylyn.github-site/pom.xml @@ -15,7 +15,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 github-updatesite diff --git a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF index 5c4e971c..1814525d 100644 --- a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-Localization: plugin Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.mylyn.github.core;singleton:=true -Bundle-Version: 1.3.0.qualifier +Bundle-Version: 1.3.0.201202121842-rc4 Bundle-Vendor: %providerName Bundle-RequiredExecutionEnvironment: J2SE-1.5 Export-Package: org.eclipse.mylyn.internal.github.core;version="1.3.0";x-friends:="org.eclipse.mylyn.github.ui", diff --git a/org.eclipse.mylyn.github.core/pom.xml b/org.eclipse.mylyn.github.core/pom.xml index 5475a40d..eeb5e884 100644 --- a/org.eclipse.mylyn.github.core/pom.xml +++ b/org.eclipse.mylyn.github.core/pom.xml @@ -15,7 +15,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 4.0.0 diff --git a/org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF index 50c31b91..d4ae7278 100755 --- a/org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-Localization: plugin Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.mylyn.github.doc;singleton:=true -Bundle-Version: 1.3.0.qualifier +Bundle-Version: 1.3.0.201202121842-rc4 Bundle-Vendor: %providerName Require-Bundle: org.eclipse.mylyn.wikitext.core;bundle-version="[1.3.0,2.0.0)";resolution:=optional, org.eclipse.mylyn.wikitext.mediawiki.core;bundle-version="[1.3.0,2.0.0)";resolution:=optional diff --git a/org.eclipse.mylyn.github.doc/pom.xml b/org.eclipse.mylyn.github.doc/pom.xml index eea5ed52..38724af3 100755 --- a/org.eclipse.mylyn.github.doc/pom.xml +++ b/org.eclipse.mylyn.github.doc/pom.xml @@ -18,7 +18,7 @@ http://www.eclipse.org/legal/epl-v10.html org.eclipse.mylyn.github github-parent - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 org.eclipse.mylyn.github.doc diff --git a/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF index 8da2047e..c4708707 100644 --- a/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Eclipse EGit Mylyn GitHub Tests Bundle-SymbolicName: org.eclipse.mylyn.github.tests -Bundle-Version: 1.3.0.qualifier +Bundle-Version: 1.3.0.201202121842-rc4 Bundle-RequiredExecutionEnvironment: J2SE-1.5 Require-Bundle: org.eclipse.jface.text;bundle-version="[3.5.0,4.0.0)", org.eclipse.mylyn.tasks.ui;bundle-version="[3.2.0,4.0.0)", diff --git a/org.eclipse.mylyn.github.tests/pom.xml b/org.eclipse.mylyn.github.tests/pom.xml index 91adc375..107cc7fc 100644 --- a/org.eclipse.mylyn.github.tests/pom.xml +++ b/org.eclipse.mylyn.github.tests/pom.xml @@ -16,7 +16,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 org.eclipse.mylyn.github.tests diff --git a/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF index 4a22e8ea..714c1a69 100644 --- a/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.mylyn.github.ui;singleton:=true Bundle-Activator: org.eclipse.mylyn.internal.github.ui.GitHubUi -Bundle-Version: 1.3.0.qualifier +Bundle-Version: 1.3.0.201202121842-rc4 Bundle-RequiredExecutionEnvironment: J2SE-1.5 Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/org.eclipse.mylyn.github.ui/pom.xml b/org.eclipse.mylyn.github.ui/pom.xml index e7ff35e9..5b597ee2 100644 --- a/org.eclipse.mylyn.github.ui/pom.xml +++ b/org.eclipse.mylyn.github.ui/pom.xml @@ -14,7 +14,7 @@ github-parent org.eclipse.mylyn.github - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 4.0.0 org.eclipse.mylyn.github.ui diff --git a/pom.xml b/pom.xml index 7f0fb6ea..c358c5f2 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 - 1.3.0-SNAPSHOT + 1.3.0.201202121842-rc4 3.0 -- cgit v1.2.3 From 31ba4aa086c07394d61484b285d099cd5133e13c Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Mon, 13 Feb 2012 08:45:37 +0100 Subject: Prepare post 1.3.0.201202121842-rc4 builds Change-Id: I062c0932c056083caf7e641baae808877ebed9a7 Signed-off-by: Matthias Sohn --- org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF | 2 +- org.eclipse.egit.github.core.tests/pom.xml | 2 +- org.eclipse.egit.github.core/META-INF/MANIFEST.MF | 2 +- org.eclipse.egit.github.core/pom-jar.xml | 2 +- org.eclipse.egit.github.core/pom.xml | 2 +- org.eclipse.mylyn.github-feature/feature.xml | 2 +- org.eclipse.mylyn.github-feature/pom.xml | 2 +- org.eclipse.mylyn.github-site/pom.xml | 2 +- org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF | 2 +- org.eclipse.mylyn.github.core/pom.xml | 2 +- org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF | 2 +- org.eclipse.mylyn.github.doc/pom.xml | 2 +- org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF | 2 +- org.eclipse.mylyn.github.tests/pom.xml | 2 +- org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF | 2 +- org.eclipse.mylyn.github.ui/pom.xml | 2 +- pom.xml | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF b/org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF index 8e1bb840..c03eb907 100644 --- a/org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF +++ b/org.eclipse.egit.github.core.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.egit.github.core.tests -Bundle-Version: 1.3.0.201202121842-rc4 +Bundle-Version: 1.3.0.qualifier Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: J2SE-1.5 Import-Package: com.google.gson;version="[1.6.0,2.0.0)", diff --git a/org.eclipse.egit.github.core.tests/pom.xml b/org.eclipse.egit.github.core.tests/pom.xml index a25ad5a9..fbabc29c 100644 --- a/org.eclipse.egit.github.core.tests/pom.xml +++ b/org.eclipse.egit.github.core.tests/pom.xml @@ -16,7 +16,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT org.eclipse.egit.github.core.tests diff --git a/org.eclipse.egit.github.core/META-INF/MANIFEST.MF b/org.eclipse.egit.github.core/META-INF/MANIFEST.MF index df1f17a9..f9599683 100644 --- a/org.eclipse.egit.github.core/META-INF/MANIFEST.MF +++ b/org.eclipse.egit.github.core/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-Localization: plugin Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.egit.github.core -Bundle-Version: 1.3.0.201202121842-rc4 +Bundle-Version: 1.3.0.qualifier Bundle-Vendor: %providerName Bundle-RequiredExecutionEnvironment: J2SE-1.5 Import-Package: com.google.gson;version="[1.6.0,2.0.0)", diff --git a/org.eclipse.egit.github.core/pom-jar.xml b/org.eclipse.egit.github.core/pom-jar.xml index a16fea73..7ff0967d 100644 --- a/org.eclipse.egit.github.core/pom-jar.xml +++ b/org.eclipse.egit.github.core/pom-jar.xml @@ -5,7 +5,7 @@ org.eclipse.mylyn.github org.eclipse.egit.github.core - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT org.sonatype.oss diff --git a/org.eclipse.egit.github.core/pom.xml b/org.eclipse.egit.github.core/pom.xml index 7a8d6626..58b2ffff 100644 --- a/org.eclipse.egit.github.core/pom.xml +++ b/org.eclipse.egit.github.core/pom.xml @@ -15,7 +15,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT 4.0.0 diff --git a/org.eclipse.mylyn.github-feature/feature.xml b/org.eclipse.mylyn.github-feature/feature.xml index 5bbf5d23..bb50e3a8 100644 --- a/org.eclipse.mylyn.github-feature/feature.xml +++ b/org.eclipse.mylyn.github-feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/org.eclipse.mylyn.github-feature/pom.xml b/org.eclipse.mylyn.github-feature/pom.xml index 03eaf2d0..0f5b61c8 100644 --- a/org.eclipse.mylyn.github-feature/pom.xml +++ b/org.eclipse.mylyn.github-feature/pom.xml @@ -14,7 +14,7 @@ github-parent org.eclipse.mylyn.github - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT 4.0.0 org.eclipse.mylyn.github.feature diff --git a/org.eclipse.mylyn.github-site/pom.xml b/org.eclipse.mylyn.github-site/pom.xml index 2c921fb4..4c253665 100644 --- a/org.eclipse.mylyn.github-site/pom.xml +++ b/org.eclipse.mylyn.github-site/pom.xml @@ -15,7 +15,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT github-updatesite diff --git a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF index 1814525d..5c4e971c 100644 --- a/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.github.core/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-Localization: plugin Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.mylyn.github.core;singleton:=true -Bundle-Version: 1.3.0.201202121842-rc4 +Bundle-Version: 1.3.0.qualifier Bundle-Vendor: %providerName Bundle-RequiredExecutionEnvironment: J2SE-1.5 Export-Package: org.eclipse.mylyn.internal.github.core;version="1.3.0";x-friends:="org.eclipse.mylyn.github.ui", diff --git a/org.eclipse.mylyn.github.core/pom.xml b/org.eclipse.mylyn.github.core/pom.xml index eeb5e884..5475a40d 100644 --- a/org.eclipse.mylyn.github.core/pom.xml +++ b/org.eclipse.mylyn.github.core/pom.xml @@ -15,7 +15,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT 4.0.0 diff --git a/org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF index d4ae7278..50c31b91 100755 --- a/org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.github.doc/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-Localization: plugin Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.mylyn.github.doc;singleton:=true -Bundle-Version: 1.3.0.201202121842-rc4 +Bundle-Version: 1.3.0.qualifier Bundle-Vendor: %providerName Require-Bundle: org.eclipse.mylyn.wikitext.core;bundle-version="[1.3.0,2.0.0)";resolution:=optional, org.eclipse.mylyn.wikitext.mediawiki.core;bundle-version="[1.3.0,2.0.0)";resolution:=optional diff --git a/org.eclipse.mylyn.github.doc/pom.xml b/org.eclipse.mylyn.github.doc/pom.xml index 38724af3..eea5ed52 100755 --- a/org.eclipse.mylyn.github.doc/pom.xml +++ b/org.eclipse.mylyn.github.doc/pom.xml @@ -18,7 +18,7 @@ http://www.eclipse.org/legal/epl-v10.html org.eclipse.mylyn.github github-parent - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT org.eclipse.mylyn.github.doc diff --git a/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF index c4708707..8da2047e 100644 --- a/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.github.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Eclipse EGit Mylyn GitHub Tests Bundle-SymbolicName: org.eclipse.mylyn.github.tests -Bundle-Version: 1.3.0.201202121842-rc4 +Bundle-Version: 1.3.0.qualifier Bundle-RequiredExecutionEnvironment: J2SE-1.5 Require-Bundle: org.eclipse.jface.text;bundle-version="[3.5.0,4.0.0)", org.eclipse.mylyn.tasks.ui;bundle-version="[3.2.0,4.0.0)", diff --git a/org.eclipse.mylyn.github.tests/pom.xml b/org.eclipse.mylyn.github.tests/pom.xml index 107cc7fc..91adc375 100644 --- a/org.eclipse.mylyn.github.tests/pom.xml +++ b/org.eclipse.mylyn.github.tests/pom.xml @@ -16,7 +16,7 @@ org.eclipse.mylyn.github github-parent - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT org.eclipse.mylyn.github.tests diff --git a/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF b/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF index 714c1a69..4a22e8ea 100644 --- a/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF +++ b/org.eclipse.mylyn.github.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.mylyn.github.ui;singleton:=true Bundle-Activator: org.eclipse.mylyn.internal.github.ui.GitHubUi -Bundle-Version: 1.3.0.201202121842-rc4 +Bundle-Version: 1.3.0.qualifier Bundle-RequiredExecutionEnvironment: J2SE-1.5 Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/org.eclipse.mylyn.github.ui/pom.xml b/org.eclipse.mylyn.github.ui/pom.xml index 5b597ee2..e7ff35e9 100644 --- a/org.eclipse.mylyn.github.ui/pom.xml +++ b/org.eclipse.mylyn.github.ui/pom.xml @@ -14,7 +14,7 @@ github-parent org.eclipse.mylyn.github - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT 4.0.0 org.eclipse.mylyn.github.ui diff --git a/pom.xml b/pom.xml index c358c5f2..7f0fb6ea 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 - 1.3.0.201202121842-rc4 + 1.3.0-SNAPSHOT 3.0 -- cgit v1.2.3