-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle.kts
91 lines (89 loc) · 2.36 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
// repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots")
maven("https://oss.sonatype.org/content/repositories/snapshots") {
name = "SonatypeSnapshots"
mavenContent { snapshotsOnly() }
}
}
}
rootProject.name = "dodamdodam-android"
include(
":dodam-student",
":ui-test-main",
":designsystem",
":feature:onboarding",
":feature:login",
":feature:meal",
":feature-student:register",
":feature-student:main",
":feature-student:home",
":network:core",
":network:login",
":network:meal",
":network:wakeup-song",
":network:outing",
":network:night-study",
":network:register",
":network:schedule",
":network:banner",
":data:core",
":data:meal",
":data:login",
":data:wakeup-song",
":data:outing",
":data:register",
":data:meal",
":data:night-study",
":data:schedule",
":data:banner",
":common",
":keystore",
":datastore",
":feature-student:nightstudy",
":feature-student:outing",
":ui",
":feature-student:all",
":data:member",
":network:member",
":feature-student:wakeup-song",
":feature-student:ask-out",
":feature-student:ask-nightstudy",
":feature-student:bus",
":data:bus",
":network:bus",
":feature:setting",
":network:point",
":data:point",
":feature-student:point",
":feature-student:ask-wakeup-song",
":logging",
":dodam-teacher-android",
":feature-teacher:register",
":feature-teacher:home",
":feature-teacher:point",
":feature-teacher:all",
)
include(":feature-teacher:nightstudy")
include(":feature-teacher:outing")
include(":feature-teacher:approve-outing")
include(":feature-teacher:approve-nightstudy")
include(":network:bundleid-info")
include(":data:bundleid-info")
include(":feature:edit-member-info")
include(":network:upload")
include(":data:upload")