-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
38 lines (31 loc) · 915 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
rootProject.name = "MintLab"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
/** (Backend / Application) */
include(":Backend:Application:MintLab")
/** (Frontend / Application) */
include(":Frontend-Android:Application:MintLab")
include(":Frontend-Desktop:Application:MintLab")
include(":Frontend-iOS:Application:MintLab")
include(":Frontend-Web:Application:MintLab")
/** (Frontend) */
include(":Frontend:Resource")
include(":Frontend:Design")
/** (Core) */
include(":Core:Kotlin")
/** (iOS wrapping module) */
include(":wrapSwiftKotlinMintLab")