mirror of
https://github.com/micahflee/TM-SGNL-Android.git
synced 2025-06-02 21:43:51 +02:00
23 lines
393 B
Kotlin
23 lines
393 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "build-logic"
|
|
|
|
include(":plugins")
|
|
include(":tools")
|
|
|
|
apply(from = "../dependencies.gradle.kts")
|