22 lines
481 B
Plaintext
22 lines
481 B
Plaintext
includeBuild("BuildScripts/gradle/plugins")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven("https://dl.bintray.com/touchin/touchin-tools")
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|
|
|
|
include(":app", ":data", ":domain", ":mobile_services")
|