nextpush-android/settings.gradle.kts
2025-01-16 17:03:22 +01:00

37 lines
844 B
Plaintext

import java.net.URI
// include(":distributor")
// include(":distributor_ui")
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = URI("https://www.jitpack.io")
content {
includeModule("com.github.nextcloud", "Android-SingleSignOn")
}
}
maven {
url = URI("https://codeberg.org/NextPush/maven/raw/branch/main/okhttp-sse/releases/")
content {
includeModule("com.squareup.okhttp3", "okhttp-sse")
}
}
mavenLocal()
}
}
include(":app")
rootProject.name = "NextPush"