-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
56 lines (49 loc) · 1.21 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
// repositoriesMode etc. is marked unstable
@file:Suppress("UnstableApiUsage")
// Shared
include(":shared:base")
include(":shared:resources")
include(":shared:data")
include(":shared:dto")
include(":shared:data-conversion")
include(":shared:network")
include(":shared:feature:home")
include(":shared:feature:licenses")
include(":shared:feature:data-update")
include(":shared:feature:countdown")
include(":shared:feature:map")
include(":shared:feature:schedule")
include(":shared:feature:transportation")
include(":shared:feature:news")
include(":shared:app")
include(":shared")
// Common
include(":base")
// Android
include(":android:theme")
include(":android:feature-settings")
include(":android:feature-countdown")
include(":android:feature-transportation")
include(":android:feature-map")
include(":android:feature-schedule")
include(":android:feature-news")
include(":android:feature-update")
include(":android:app")
// Server
include(":server")
// Preparation
include(":preparation")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
rootProject.name = "StoppelMap"