mirror of
https://github.com/nacabaro/vbhelper.git
synced 2026-07-30 00:31:54 +00:00
37 lines
873 B
Plaintext
37 lines
873 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenLocal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "VBHelper"
|
|
include(":app")
|
|
|
|
includeBuild("../VB-DIM-Reader-2.0.0") {
|
|
dependencySubstitution {
|
|
substitute(module("com.github.cfogrady:vb-dim-reader")).using(project(":"))
|
|
}
|
|
}
|
|
|
|
includeBuild("../vb-nfc-reader") {
|
|
dependencySubstitution {
|
|
substitute(module("com.github.cfogrady:vb-nfc-reader")).using(project(":"))
|
|
}
|
|
}
|