mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-27 22:10:40 +02:00
38 lines
942 B
Kotlin
38 lines
942 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx\\..*")
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx\\..*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
maven("https://jitpack.io") {
|
|
content {
|
|
includeGroupByRegex("com\\.github\\..*")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Gadgetbridge"
|
|
|
|
include(":app")
|
|
include(":GBDaoGenerator")
|
|
include(":FitCodeGenerator")
|