controls-kt/settings.gradle.kts

44 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-02-17 14:46:02 +03:00
pluginManagement {
2021-01-10 18:41:52 +03:00
val kotlinVersion = "1.4.21"
val toolsVersion = "0.7.1"
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(
2020-11-03 22:25:02 +03:00
":dataforge-device-core",
":dataforge-device-tcp",
":dataforge-device-serial",
":dataforge-device-server",
":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",
":dataforge-magix-client",
":motors"
2020-02-17 14:46:02 +03:00
)
2020-06-05 21:07:23 +03:00
//includeBuild("../dataforge-core")
//includeBuild("../plotly.kt")