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")
|