-
Notifications
You must be signed in to change notification settings - Fork 8
/
settings.gradle.kts
41 lines (34 loc) · 1.42 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
rootProject.name = "types-kotlin"
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 = extra["seskar.version"] as String
plugin("seskar", "io.github.turansky.seskar").version(seskarVersion)
val coroutinesVersion = extra["kotlinx-coroutines.version"] as String
library("coroutines-core", "org.jetbrains.kotlinx", "kotlinx-coroutines-core").version(coroutinesVersion)
}
create("kfc") {
val kfcVersion = extra["kfc.version"] as String
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")
}
}
}
include("actions-kotlin")
include("browser-kotlin")
include("cesium-kotlin")
include("csstype-kotlin")
include("popper-kotlin")
include("react-kotlin")
include("react-query-kotlin")
include("react-table-kotlin")
include("react-virtual-kotlin")