Convert http links to https

Change-Id: Ie71bb378917b7270eb19d6aaaf043f6b139b10d0
This commit is contained in:
Paladox none
2019-04-19 15:15:06 +00:00
parent b73c0c7e1b
commit b85ef81d12
5 changed files with 12 additions and 12 deletions

View File

@@ -16,9 +16,9 @@ from os import path
REPO_ROOTS = {
'ECLIPSE': 'https://repo.eclipse.org/content/groups/releases',
'GERRIT': 'http://gerrit-maven.storage.googleapis.com',
'GERRIT': 'https://gerrit-maven.storage.googleapis.com',
'GERRIT_API': 'https://gerrit-api.commondatastorage.googleapis.com/release',
'MAVEN_CENTRAL': 'http://repo1.maven.org/maven2',
'MAVEN_CENTRAL': 'https://repo1.maven.org/maven2',
'MAVEN_LOCAL': 'file://' + path.expanduser('~/.m2/repository'),
'MAVEN_SNAPSHOT': 'https://oss.sonatype.org/content/repositories/snapshots',
}