2024-03-18 17:18:31 +03:00
|
|
|
import space.kscience.gradle.Maturity
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("space.kscience.gradle.mpp")
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
description = """
|
|
|
|
A plugin for Controls-kt device server on top of plc4x library
|
|
|
|
""".trimIndent()
|
|
|
|
|
2024-04-07 10:07:23 +03:00
|
|
|
kscience {
|
2024-03-18 17:18:31 +03:00
|
|
|
jvm()
|
2024-04-07 10:07:23 +03:00
|
|
|
jvmMain {
|
2024-03-18 17:18:31 +03:00
|
|
|
api(projects.controlsCore)
|
2024-04-29 15:38:14 +03:00
|
|
|
api(libs.plc4j.spi)
|
2024-03-18 17:18:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-07 10:07:23 +03:00
|
|
|
readme {
|
2024-03-18 17:18:31 +03:00
|
|
|
maturity = Maturity.EXPERIMENTAL
|
|
|
|
}
|