17 lines
328 B
Plaintext
17 lines
328 B
Plaintext
import space.kscience.gradle.Maturity
|
|
|
|
plugins {
|
|
id("space.kscience.gradle.jvm")
|
|
`maven-publish`
|
|
}
|
|
|
|
description = "Implementation of direct serial port communication with JSerialComm"
|
|
|
|
dependencies{
|
|
api(project(":controls-core"))
|
|
implementation(libs.jSerialComm)
|
|
}
|
|
|
|
readme{
|
|
maturity = Maturity.EXPERIMENTAL
|
|
} |