aboutsummaryrefslogtreecommitdiff
path: root/build-logic/settings.gradle.kts
blob: 54fd3070e7b1cb8b27495514d86e35d2f3e59d8b (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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")