controls-kt/settings.gradle.kts

39 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-02-17 14:46:02 +03:00
pluginManagement {
2020-09-15 18:26:44 +03:00
val kotlinVersion = "1.4.10"
val toolsVersion = "0.6.0"
2020-02-17 14:46:02 +03:00
repositories {
mavenLocal()
jcenter()
gradlePluginPortal()
maven("https://kotlin.bintray.com/kotlinx")
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/mipt-npm/dataforge")
2020-09-08 10:13:14 +03:00
maven("https://dl.bintray.com/mipt-npm/kscience")
2020-02-17 14:46:02 +03:00
maven("https://dl.bintray.com/mipt-npm/dev")
}
plugins {
2020-09-08 10:13:14 +03:00
id("ru.mipt.npm.mpp") version toolsVersion
id("ru.mipt.npm.jvm") version toolsVersion
id("ru.mipt.npm.js") version toolsVersion
id("ru.mipt.npm.publish") version toolsVersion
2020-02-17 14:46:02 +03:00
kotlin("jvm") version kotlinVersion
2020-09-08 10:13:14 +03:00
kotlin("js") version kotlinVersion
2020-02-17 14:46:02 +03:00
}
}
2020-08-04 16:13:53 +03:00
rootProject.name = "dataforge-control"
2020-02-17 14:46:02 +03:00
include(
2020-09-21 21:34:40 +03:00
":ktor-sse",
2020-07-19 20:37:44 +03:00
":dataforge-device-core",
2020-08-15 20:24:35 +03:00
":dataforge-device-serial",
2020-07-19 20:37:44 +03:00
":dataforge-device-server",
":dataforge-device-client",
2020-08-28 21:54:56 +03:00
":demo",
":motors"
2020-02-17 14:46:02 +03:00
)
2020-06-05 21:07:23 +03:00
//includeBuild("../dataforge-core")
//includeBuild("../plotly.kt")