-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
80 lines (65 loc) · 1.98 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
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
plugins {
kotlin("multiplatform").version(extra["kotlin.version"] as String)
id("org.jetbrains.compose").version(extra["compose.version"] as String)
}
}
rootProject.name = "MetaPhrase"
enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
":core-common",
":core-common:testutils",
":core-localization",
":core-persistence",
":domain-language",
":domain-language:data",
":domain-language:persistence",
":domain-language:repository",
":domain-language:usecase",
":domain-project",
":domain-project:data",
":domain-project:persistence",
":domain-project:repository",
":domain-project:usecase",
":domain-formats",
":domain-tm",
":domain-tm:data",
":domain-tm:persistence",
":domain-tm:repository",
":domain-tm:usecase",
":domain-spellcheck",
":domain-glossary",
":domain-glossary:persistence",
":domain-glossary:data",
":domain-glossary:repository",
":domain-glossary:usecase",
":domain-mt",
":domain-mt:repository",
":feature-main",
":feature-main:dialog:settings",
":feature-main:dialog:login",
":feature-intro",
":feature-projects",
":feature-projects:list",
":feature-projects:dialog:newproject",
":feature-projects:dialog:statistics",
":feature-projects:dialog:export",
":feature-projects:dialog:import",
":feature-translate",
":feature-translate:dialog:newsegment",
":feature-translate:dialog:newterm",
":feature-translate:toolbar",
":feature-translate:messages",
":feature-translate:panel:validate",
":feature-translate:panel:matches",
":feature-translate:panel:memory",
":feature-translate:panel:glossary",
":feature-translate:panel:machinetranslation",
)