-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
49 lines (46 loc) · 1.25 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
49 lines (46 loc) · 1.25 KB
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
45
46
47
48
49
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://jogamp.org/deployment/maven")
}
}
rootProject.name = "ComposeApp"
includeBuild("build-conventions")
include(
// Apps
":app",
":desktop",
// Modules
":modules:feature-account",
":modules:feature-account-api",
":modules:feature-common",
":modules:feature-common-api",
":modules:feature-electricity",
":modules:feature-electricity-api",
":modules:feature-home-api",
":modules:feature-home-shared",
":modules:feature-launches",
":modules:feature-launches-api",
":modules:feature-login",
":modules:feature-login-api",
":modules:feature-schedules",
":modules:feature-schedules-api",
":modules:library-feature",
":modules:library-navigation",
":modules:library-navigation-api",
":modules:library-network",
":modules:library-network-api",
":modules:library-test",
":modules:library-ui-shared",
)