-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
39 lines (37 loc) · 1001 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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
// https://docs.gradle.org/7.0/userguide/declaring_dependencies.html#sec:type-safe-project-accessors
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://jogamp.org/deployment/maven")
}
}
rootProject.name = "ComposeApp"
includeBuild("build-conventions")
include(
// Apps
":app",
":desktop",
":iosapp",
// Modules
":modules:feature-home-api",
":modules:feature-home-shared",
":modules:library-navigation",
":modules:library-navigation-api",
":modules:library-network",
":modules:library-network-api",
":modules:library-test",
":modules:library-ui",
":modules:library-ui-shared",
)