mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 03:18:06 +00:00
37 lines
937 B
Kotlin
37 lines
937 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { // for com.github.chrisbanes:PhotoView
|
|
url = uri("https://www.jitpack.io")
|
|
}
|
|
|
|
maven {
|
|
name = "local linphone-sdk maven repository"
|
|
url = uri("file://${providers.gradleProperty("LinphoneSdkBuildDir").get()}/maven_repository/")
|
|
content {
|
|
includeGroup ("org.linphone")
|
|
}
|
|
}
|
|
|
|
maven {
|
|
name = "linphone.org maven repository"
|
|
url = uri("https://linphone.org/maven_repository")
|
|
content {
|
|
includeGroup ("org.linphone")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Linphone"
|
|
include(":app")
|