26 lines
435 B
Text
26 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")
|