47 lines
993 B
Kotlin
47 lines
993 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
// Map the plugin ID to the Maven artifact
|
|
if (requested.id.id == "io.objectbox") {
|
|
useModule("io.objectbox:objectbox-gradle-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
url = uri("https://jitpack.io")
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Navigation"
|
|
|
|
include(
|
|
":",
|
|
":app",
|
|
":automotive",
|
|
":common",
|
|
":common:car",
|
|
":common:data",
|
|
)
|
|
|
|
|
|
//include(":automotive")
|