diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index de5adb9..63cdb08 100644 --- a/build.gradle +++ b/build.gradle @@ -56,7 +56,7 @@ allprojects { repositories { google() mavenCentral() - mavenLocal() + //mavenLocal() maven { url 'https://api.mapbox.com/downloads/v2/releases/maven' authentication { @@ -72,6 +72,17 @@ allprojects { } maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" } maven { url 'https://jitpack.io' } + maven { + url "https://gitlab.e.foundation/api/v4/groups/13662/-/packages/maven" + name "GitLab" + credentials(HttpHeaderCredentials) { + name = 'Private-Token' + value = gitLabPrivateToken + } + authentication { + header(HttpHeaderAuthentication) + } + } maven { url '../embeddedmavenrepository/'} } } |