-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle.kts
44 lines (39 loc) · 943 Bytes
/
settings.gradle.kts
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (C) 2024 r0adkll
// SPDX-License-Identifier: Apache-2.0
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
rootProject.name = "kimchi"
include(":annotations")
include(
":compiler",
":compiler-utils",
)
include(
":circuit:annotations",
":circuit:compiler",
)
include(
":sample:androidApp",
":sample:desktopApp",
":sample:shared",
":sample:common",
":sample:features:menu:api",
":sample:features:menu:impl",
":sample:features:menu:ui",
)
include(":integration-test")
// https://docs.gradle.org/5.6/userguide/groovy_plugin.html#sec:groovy_compilation_avoidance
enableFeaturePreview("GROOVY_COMPILATION_AVOIDANCE")
// https://docs.gradle.org/current/userguide/declaring_dependencies.html#sec:type-safe-project-accessors
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")