aboutsummaryrefslogtreecommitdiff
path: root/build-logic/settings.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build-logic/settings.gradle.kts')
-rw-r--r--build-logic/settings.gradle.kts29
1 files changed, 29 insertions, 0 deletions
diff --git a/build-logic/settings.gradle.kts b/build-logic/settings.gradle.kts
new file mode 100644
index 00000000..6afc1258
--- /dev/null
+++ b/build-logic/settings.gradle.kts
@@ -0,0 +1,29 @@
+rootProject.name = "build-logic"
+
+enableFeaturePreview("VERSION_CATALOGS")
+
+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")