2020-02-17 14:46:02 +03:00
|
|
|
pluginManagement {
|
2021-02-09 16:39:39 +03:00
|
|
|
val kotlinVersion = "1.4.30"
|
|
|
|
val toolsVersion = "0.7.6"
|
2020-02-17 14:46:02 +03:00
|
|
|
|
|
|
|
repositories {
|
2020-10-21 23:16:15 +03:00
|
|
|
mavenLocal()
|
2020-02-17 14:46:02 +03:00
|
|
|
jcenter()
|
|
|
|
gradlePluginPortal()
|
2020-10-21 23:16:15 +03:00
|
|
|
//maven("https://kotlin.bintray.com/kotlinx")
|
2020-02-17 14:46:02 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-10 18:41:52 +03:00
|
|
|
rootProject.name = "controls.kt"
|
2020-02-17 14:46:02 +03:00
|
|
|
|
|
|
|
include(
|
2021-02-09 16:39:39 +03:00
|
|
|
":controls-core",
|
|
|
|
":controls-tcp",
|
|
|
|
":controls-serial",
|
|
|
|
":controls-server",
|
2020-11-03 22:25:02 +03:00
|
|
|
":demo",
|
2020-11-02 17:53:53 +03:00
|
|
|
":magix",
|
|
|
|
":magix:magix-api",
|
2020-11-03 18:54:52 +03:00
|
|
|
":magix:magix-server",
|
2021-01-10 18:41:52 +03:00
|
|
|
":magix:magix-service",
|
2021-02-09 16:39:39 +03:00
|
|
|
":magix:magix-java-client",
|
|
|
|
":controls-magix-client",
|
2021-01-10 18:41:52 +03:00
|
|
|
":motors"
|
2020-02-17 14:46:02 +03:00
|
|
|
)
|
|
|
|
|
2020-06-05 21:07:23 +03:00
|
|
|
//includeBuild("../dataforge-core")
|
2021-02-09 16:39:39 +03:00
|
|
|
//includeBuild("../plotly.kt")
|
|
|
|
include("magix-java-client")
|