diff options
author | Florian Zschocke <florian.zschocke@devolo.de> | 2020-04-01 13:31:59 +0200 |
---|---|---|
committer | Florian Zschocke <florian.zschocke@devolo.de> | 2020-04-01 13:49:48 +0200 |
commit | fffdda5a20b5fc3e4c6a4c11443109c1232c7e39 (patch) | |
tree | ed54cdfbb617a053c3fe51c5b77d1972c0ad0da8 /build.moxie | |
parent | d9eddcbea47010060d3cb0978c961630f0d7c50e (diff) | |
download | gitblit-fffdda5a20b5fc3e4c6a4c11443109c1232c7e39.tar.gz gitblit-fffdda5a20b5fc3e4c6a4c11443109c1232c7e39.zip |
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
Diffstat (limited to 'build.moxie')
-rw-r--r-- | build.moxie | 4 |
1 files 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 |