-
Notifications
You must be signed in to change notification settings - Fork 10
/
settings.gradle.kts
57 lines (46 loc) · 1.28 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
val conventionDir = "./gradle-convention-plugins"
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
from(files("$conventionDir/gradle/conventionLibs.versions.toml"))
}
}
}
includeBuild(conventionDir)
rootProject.name = "ballast"
include(":ballast-api")
include(":ballast-viewmodel")
include(":ballast-logging")
include(":ballast-utils")
include(":ballast-core")
include(":ballast-repository")
include(":ballast-saved-state")
include(":ballast-sync")
include(":ballast-undo")
include(":ballast-navigation")
include(":ballast-schedules")
include(":ballast-crash-reporting")
include(":ballast-firebase-crashlytics")
include(":ballast-analytics")
include(":ballast-firebase-analytics")
include(":ballast-debugger-models")
include(":ballast-debugger-client")
include(":ballast-debugger-server")
include(":ballast-debugger-ui")
include(":ballast-idea-plugin")
include(":ballast-test")
include(":examples:android")
include(":examples:desktop")
include(":examples:web")
include(":examples:counter")
include(":examples:schedules")
include(":examples:navigationWithEnumRoutes")
include(":examples:navigationWithCustomRoutes")
include(":docs")