2023-08-23 16:21:11 +03:00
|
|
|
import space.kscience.gradle.Maturity
|
|
|
|
|
2020-08-15 20:24:35 +03:00
|
|
|
plugins {
|
2024-05-10 11:33:00 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2021-04-05 17:41:36 +03:00
|
|
|
`maven-publish`
|
2020-08-15 20:24:35 +03:00
|
|
|
}
|
|
|
|
|
2023-08-23 16:21:11 +03:00
|
|
|
description = "Implementation of direct serial port communication with JSerialComm"
|
|
|
|
|
2024-05-10 11:33:00 +03:00
|
|
|
kscience {
|
|
|
|
jvm()
|
|
|
|
jvmMain {
|
|
|
|
api(project(":controls-core"))
|
|
|
|
implementation(libs.jSerialComm)
|
|
|
|
}
|
2023-08-23 16:21:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
|
|
|
maturity = Maturity.EXPERIMENTAL
|
2020-08-15 20:24:35 +03:00
|
|
|
}
|