2022-07-04 01:55:19 +03:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
/* Needed for org.apache.sshd debugging
|
|
|
|
maven {
|
|
|
|
url "https://jitpack.io"
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2023-01-23 22:02:01 +00:00
|
|
|
maven {
|
|
|
|
name = "KDE Invent Maven"
|
|
|
|
// This project_id corresponds to kdeconnect-android project
|
|
|
|
// Depending on how long we need this custom package, we may decide to move it to a more-official repo
|
|
|
|
url = "https://invent.kde.org/api/v4/projects/72/packages/maven"
|
|
|
|
}
|
2022-07-04 01:55:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
rootProject.name = "kdeconnect-android"
|