nextpush-android/settings.gradle.kts

37 lines
844 B
Plaintext
Raw Permalink Normal View History

2024-11-09 10:47:35 +00:00
import java.net.URI
2025-01-16 17:03:22 +01:00
// include(":distributor")
// include(":distributor_ui")
2025-01-16 16:09:06 +01:00
2024-11-09 10:47:35 +00:00
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")
}
}
2024-11-15 14:44:35 +00:00
mavenLocal()
2024-11-09 10:47:35 +00:00
}
}
include(":app")
rootProject.name = "NextPush"