1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

Tech | Middleware from GitHub packages and new CI configuration (#1498)

This commit is contained in:
Evgenii Kozlov 2021-05-27 16:48:52 +03:00 committed by GitHub
parent 06e6e61d07
commit b9a1a0a2de
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 62 additions and 12 deletions

View file

@ -36,12 +36,22 @@ buildscript {
}
}
def githubProperties = new Properties()
githubProperties.load(new FileInputStream(rootProject.file('github.properties')))
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven { url 'http://dl.bintray.com/ebolo/ebolo-oss' }
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/anytypeio/go-anytype-middleware")
credentials {
username = githubProperties['gpr.usr']
password = githubProperties['gpr.key']
}
}
}
}