2023-08-23 16:21:11 +03:00
|
|
|
import space.kscience.gradle.Maturity
|
|
|
|
|
2020-08-15 20:24:35 +03:00
|
|
|
plugins {
|
2022-08-02 09:46:31 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
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"
|
|
|
|
|
2020-08-15 20:24:35 +03:00
|
|
|
dependencies{
|
2021-02-09 16:39:39 +03:00
|
|
|
api(project(":controls-core"))
|
2024-03-19 22:08:04 +03:00
|
|
|
implementation(libs.jSerialComm)
|
2023-08-23 16:21:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
|
|
|
maturity = Maturity.EXPERIMENTAL
|
2020-08-15 20:24:35 +03:00
|
|
|
}
|