-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle
40 lines (32 loc) · 981 Bytes
/
settings.gradle
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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven { url = "https://maven.pkg.jetbrains.space/public/p/compose/dev" }
google()
}
}
rootProject.name = 'kotlin-echo'
// echo replication libraries
include ':library:echo-core'
include ':library:echo'
// Websockets support
include ':library:echo-ktor-client'
include ':library:echo-ktor-server'
include ':library:echo-ktor-websockets'
// WebRTC support
include ':library:echo-webrtc-client'
include ':library:echo-webrtc-server'
include ':library:echo-webrtc-signaling'
// Persistence
include ':library:echo-indexeddb'
// markdown-party
include ':markdown:markdown'
include ':markdown:markdown-backend'
include ':markdown:markdown-frontend-compose'
// samples
include ':samples:drawing'
include ':samples:walkthrough'
// Enable Gradle's version catalog support
// https://docs.gradle.org/current/userguide/platforms.html
enableFeaturePreview("VERSION_CATALOGS")