31 lines
585 B
Plaintext
31 lines
585 B
Plaintext
val pushCache: String by settings
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
|
|
buildCache {
|
|
remote<HttpBuildCache> {
|
|
url = uri("http://18.0.0.7:3071/cache/")
|
|
isAllowInsecureProtocol = true
|
|
isAllowUntrustedServer = true
|
|
isUseExpectContinue = true
|
|
isPush = (pushCache == "true")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "ReaderForSelfossV2"
|
|
include(":androidApp")
|
|
include(":shared") |