From fffdda5a20b5fc3e4c6a4c11443109c1232c7e39 Mon Sep 17 00:00:00 2001 From: Florian Zschocke Date: Wed, 1 Apr 2020 13:31:59 +0200 Subject: [PATCH] Switch Eclipse repositories to HTTPS. The Eclipse maven repositories changed to only allow HTTPS and not serve HTTP anymore. HTTP will redirect to HTTPS, which moxie does not handle well and fails. So the registered Eclipse repositories are changed to 'https://' transport. Fixes #1334 --- build.moxie | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.moxie b/build.moxie index 56b68226..fd7b1309 100644 --- a/build.moxie +++ b/build.moxie @@ -96,8 +96,8 @@ dependencyDirectory: ext registeredRepositories: - { id: central, url: 'https://repo1.maven.org/maven2' } - { id: mavencentral, url: 'https://repo1.maven.org/maven2' } -- { id: eclipse, url: 'http://repo.eclipse.org/content/groups/releases' } -- { id: eclipse-snapshots, url: 'http://repo.eclipse.org/content/groups/snapshots' } +- { id: eclipse, url: 'https://repo.eclipse.org/content/groups/releases' } +- { id: eclipse-snapshots, url: 'https://repo.eclipse.org/content/groups/snapshots' } - { id: gitblit, url: 'http://gitblit.github.io/gitblit-maven' } # Source all dependencies from the following repositories in the specified order -- 2.39.5