-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
32 lines (29 loc) · 809 Bytes
/
settings.gradle.kts
File metadata and controls
32 lines (29 loc) · 809 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
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
// mavenLocal()
}
}
rootProject.name = "compottie"
include(":compottie-core")
include(":compottie")
include(":compottie-lite")
include(":compottie-dot")
include(":compottie-network")
include(":compottie-network-core")
include(":compottie-resources")
include(":example:desktopApp")
include(":example:webApp")
include(":example:androidApp")
include(":example:shared")