controls-kt/settings.gradle.kts

40 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-02-17 14:46:02 +03:00
pluginManagement {
2020-10-04 22:36:44 +03:00
val kotlinVersion = "1.4.20-M1"
val toolsVersion = "0.6.3-dev-1.4.20-M1"
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-10-04 22:36:44 +03:00
id("ru.mipt.npm.project") version toolsVersion
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",
2020-10-08 11:20:08 +03:00
":dataforge-magix-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")