maven_jar: Add repo.eclipse.org to supported repositories

Change-Id: Ida1d56b8dd9a78fe4f0787aada9ac327be79f5ad
This commit is contained in:
David Ostrovsky
2018-12-28 09:23:12 +01:00
committed by David Pursehouse
parent 0c34947384
commit a9c4565483
2 changed files with 3 additions and 0 deletions

View File

@@ -6,6 +6,8 @@ MAVEN_CENTRAL = "MAVEN_CENTRAL:"
MAVEN_LOCAL = "MAVEN_LOCAL:" MAVEN_LOCAL = "MAVEN_LOCAL:"
ECLIPSE = "ECLIPSE:"
def _maven_release(ctx, parts): def _maven_release(ctx, parts):
"""induce jar and url name from maven coordinates.""" """induce jar and url name from maven coordinates."""
if len(parts) not in [3, 4]: if len(parts) not in [3, 4]:

View File

@@ -15,6 +15,7 @@
from os import path from os import path
REPO_ROOTS = { REPO_ROOTS = {
'ECLIPSE': 'https://repo.eclipse.org/content/groups/releases',
'GERRIT': 'http://gerrit-maven.storage.googleapis.com', 'GERRIT': 'http://gerrit-maven.storage.googleapis.com',
'GERRIT_API': 'https://gerrit-api.commondatastorage.googleapis.com/release', 'GERRIT_API': 'https://gerrit-api.commondatastorage.googleapis.com/release',
'MAVEN_CENTRAL': 'http://repo1.maven.org/maven2', 'MAVEN_CENTRAL': 'http://repo1.maven.org/maven2',