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:
parent
06e6e61d07
commit
b9a1a0a2de
8 changed files with 62 additions and 12 deletions
12
build.gradle
12
build.gradle
|
@ -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']
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue