Last active
November 5, 2020 17:31
-
-
Save ibrahimsn98/ebd08f4660cc09a0b37d535673f3fb5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
allprojects { | |
repositories { | |
google() | |
jcenter() | |
... | |
maven { | |
url "https://gitlab.com/api/v4/projects/projectid/packages/maven" | |
name "GitLab" | |
credentials(HttpHeaderCredentials) { | |
name = 'Private-Token' | |
value = Config.gitLabAccessToken | |
} | |
authentication { | |
header(HttpHeaderAuthentication) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment