-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle.kts
53 lines (48 loc) · 1.39 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
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
gradlePluginPortal()
mavenCentral()
// maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental") {
// content {
// includeGroupByRegex("io\\.ktor.*")
// includeGroupByRegex("org\\.jetbrains.*")
// }
// }
// maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
// maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
// maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
rootProject.name = "soil"
// https://docs.gradle.org/7.4/userguide/declaring_dependencies.html#sec:type-safe-project-accessors
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
// Public modules
include(
":soil-query-core",
":soil-query-compose",
":soil-query-compose-runtime",
":soil-query-receivers:ktor",
":soil-query-test",
":soil-form",
":soil-serialization-bundle",
":soil-space"
)
// Private modules
include(
":sample:composeApp",
":internal:playground",
":internal:testing"
)