-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
41 lines (37 loc) · 1.18 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("tooling")
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
dependencyResolutionManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
rootProject.name = "storex"
include(":pager:pager-core")
include(":pager:pager-compose")
include(":repository:repository-runtime")
include(":repository:repository-compiler:ksp")
include(":store:store-core")
include(":store:store-core-api")
include(":store:store-core-impl")
include(":storex-result")
include(":store:store-extensions")
include(":store:store-internal-hooks")
include(":storex-telemetry")
include(":mutablestore:mutablestore-core")
include(":mutablestore:mutablestore-core-api")
include(":mutablestore:mutablestore-core-impl")
include(":storex-coroutines")
include(":sample")