summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdithya Chakilam <achakila@codeaurora.org>2021-11-19 09:01:43 -0800
committerAdithya Chakilam <achakila@codeaurora.org>2021-11-19 09:01:43 -0800
commit1e84f2d0375564b2ab5bf07d66043f2c9e475360 (patch)
tree58b4fa8ade7f871c40aab8743491bc73e3f8a743
parent5c6e69a7430ec0bf25178176ec932d8eeb48325b (diff)
Update maven central url
The central repository no longer support insecure communication. see [1] for more details. [1]: https://support.sonatype.com/hc/en-us/articles/360041287334 Change-Id: I5386e400df48435bcc92a2c14a25032e4d77174f
-rw-r--r--tools/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/util.py b/tools/util.py
index fb49664251..2c731e6597 100644
--- a/tools/util.py
+++ b/tools/util.py
@@ -27,7 +27,7 @@ REPO_ROOTS = {
'GERRIT': 'http://gerrit-maven.storage.googleapis.com',
'GERRIT_API': 'https://gerrit-api.commondatastorage.googleapis.com/release',
'ECLIPSE': 'https://repo.eclipse.org/content/groups/releases',
- 'MAVEN_CENTRAL': 'http://repo1.maven.org/maven2',
+ 'MAVEN_CENTRAL': 'https://repo1.maven.org/maven2',
'MAVEN_LOCAL': 'file://' + path.expanduser('~/.m2/repository'),
}