controls-kt/controls-serial/build.gradle.kts

17 lines
345 B
Plaintext
Raw Normal View History

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"))
2023-08-16 10:37:02 +03:00
implementation("com.fazecast:jSerialComm:2.10.3")
2023-08-23 16:21:11 +03:00
}
readme{
maturity = Maturity.EXPERIMENTAL
2020-08-15 20:24:35 +03:00
}