mirror of
https://github.com/bitfireAT/davx5-ose.git
synced 2025-12-23 23:17:50 -05:00
* Migrated to Kotlin DSL Signed-off-by: Arnau Mora Gras <arnyminerz@proton.me> * Migrated to Kotlin DSL Signed-off-by: Arnau Mora Gras <arnyminerz@proton.me> * Update versions, suppress nofications for libs we don't want to upgrade --------- Signed-off-by: Arnau Mora Gras <arnyminerz@proton.me> Co-authored-by: Ricki Hirner <hirner@bitfire.at>
23 lines
410 B
Kotlin
23 lines
410 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
|
|
// AboutLibraries
|
|
maven("https://plugins.gradle.org/m2/")
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
|
|
// AppIntro, dav4jvm
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|
|
|
|
include(":app")
|