mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
24 lines
537 B
Groovy
24 lines
537 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
|
|
maven {
|
|
name "linphone.org maven repository"
|
|
url "https://linphone.org/maven_repository"
|
|
content {
|
|
includeGroup "org.linphone"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rootProject.name = "Linphone"
|
|
include ':app'
|