-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
36 lines (28 loc) · 840 Bytes
/
settings.gradle.kts
File metadata and controls
36 lines (28 loc) · 840 Bytes
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
rootProject.name = "debugbar"
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
}
}
include(":core:core-common")
include("core:core")
include("core:core-no-op")
include(":backend:backend-common")
include(":backend:backend")
include(":backend:backend-no-op")
include(":backend:shared-api-models")
include(":ui:idea-plugin")
include(":ui:embedded")
include(":ui:web")
include(":plugins:network:ktor")
include(":plugins:network:ktor-no-op")
include(":plugins:network:okhttp")
include(":plugins:network:okhttp-no-op")
include(":plugins:logger:timber")
include(":plugins:logger:timber-no-op")
include(":plugins:watcher:compose")
include(":plugins:watcher:compose-no-op")
include(":samples:android")
include(":samples:desktop")