25 lines
435 B
Text
25 lines
435 B
Text
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
versionCatalogs { create("libs") { from(files("../gradle/libs.versions.toml")) } }
|
|
}
|
|
|
|
rootProject.name = "build-logic"
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
include("android-plugins")
|
|
|
|
include("automation-plugins")
|
|
|
|
include("kotlin-plugins")
|