ReaderForSelfoss-multiplatform/settings.gradle.kts
aminecmi 4d8076c3cf
Some checks failed
continuous-integration/drone/push Build is failing
build: Added back maven repos (see 1fb9d60dc5 (note_1223925153))
2022-12-29 21:34:13 +01:00

33 lines
763 B
Plaintext

val pushCache: String by settings
pluginManagement {
repositories {
// maven { url = uri("https://nexus.amine-louveau.fr/repository/maven-public/")}
google()
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
// maven { url = uri("https://nexus.amine-louveau.fr/repository/maven-public/")}
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")