33 lines
765 B
Plaintext
33 lines
765 B
Plaintext
|
import java.net.URI
|
||
|
|
||
|
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")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
include(":app")
|
||
|
rootProject.name = "NextPush"
|