-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.gradle.kts
64 lines (54 loc) · 2.26 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
54
55
56
57
58
59
60
61
62
63
64
rootProject.name = "seskar"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositories {
mavenCentral()
}
versionCatalogs {
create("libs") {
val kotlinVersion = extra["kotlin.version"] as String
plugin("kotlin-multiplatform", "org.jetbrains.kotlin.multiplatform").version(kotlinVersion)
plugin("kotlin-jsPlainObjects", "org.jetbrains.kotlin.plugin.js-plain-objects").version(kotlinVersion)
val seskarVersion = "--predefined--"
plugin("seskar", "io.github.turansky.seskar").version(seskarVersion)
library("kotlin-testJs", "org.jetbrains.kotlin", "kotlin-test-js").version(kotlinVersion)
val coroutinesVersion = extra["kotlinx-coroutines.version"] as String
library("coroutines-core", "org.jetbrains.kotlinx", "kotlinx-coroutines-core").version(coroutinesVersion)
library("coroutines-test", "org.jetbrains.kotlinx", "kotlinx-coroutines-test").version(coroutinesVersion)
}
create("kfc") {
val kfcVersion = extra["kfc.version"] as String
plugin("application", "io.github.turansky.kfc.application").version(kfcVersion)
plugin("library", "io.github.turansky.kfc.library").version(kfcVersion)
}
create("kotlinWrappers") {
val wrappersVersion = extra["kotlin-wrappers.version"] as String
from("org.jetbrains.kotlin-wrappers:kotlin-wrappers-catalog:$wrappersVersion")
}
}
}
includeBuild("seskar")
include("tests:alias")
include("tests:data")
include("tests:env")
include("tests:events")
include("tests:lazy-functions")
include("tests:mixin")
include("tests:native")
include("tests:primitive")
include("tests:react-display-name")
include("tests:react-lazy-components:app")
include("tests:react-lazy-components:content")
include("tests:react-lazy-components:footer")
include("tests:react-lazy-components:header")
include("tests:react-memo")
include("tests:react-props")
include("tests:react-test")
include("tests:react-value")
include("tests:special-name")
include("tests:suspend")
include("tests:type-guard")
include("tests:union-data")
include("tests:value")
include("tests:workers:simple-app")
include("tests:workers:simple-check")