diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 1425a6c..e8c0998 100644 --- a/build.gradle +++ b/build.gradle @@ -87,5 +87,18 @@ publishing { // Notice: This block does NOT have the same function as the block in the top level. // The repositories here will be used for publishing your artifact, not for // retrieving dependencies. + maven { + name = "CShift" + url = uri("https://git.cshift.net/api/packages/CircleShift/maven") + + credentials(HttpHeaderCredentials) { + name = "Authorization" + value = "token ${auth_token}" + } + + authentication { + header(HttpHeaderAuthentication) + } + } } } |