forked from JetBrains/kotlin-wrappers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
45 lines (33 loc) · 1 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
rootProject.name = "kotlin-wrappers"
pluginManagement {
resolutionStrategy {
plugins {
val kotlinVersion = extra["kotlin.version"] as String
kotlin("multiplatform") version kotlinVersion
kotlin("jvm") version kotlinVersion
kotlin("js") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
}
}
}
// Platform-agnostic CSS support
include("kotlin-css")
// Kotlin/JS: various helpers
include("kotlin-extensions")
// Kotlin/JS: Mocha wrappers
// TODO update to latest version and re-enable
// include("kotlin-mocha")
// Kotlin/JS: React wrappers
include("kotlin-react")
include("kotlin-react-dom")
// Kotlin/JS: Redux wrappers
include("kotlin-react-redux")
include("kotlin-redux")
// Kotlin/JS: React Router wrappers
include("kotlin-react-router-dom")
// Kotlin/JS: React Table wrappers
include("kotlin-react-table")
// Kotlin/JS: styled-components wrappers
include("kotlin-styled")
// Examples
include("examples")