controls-kt/controls-ports-ktor/build.gradle.kts

23 lines
369 B
Plaintext
Raw Normal View History

2023-08-23 16:21:11 +03:00
import space.kscience.gradle.Maturity
2020-09-21 21:34:40 +03:00
plugins {
id("space.kscience.gradle.mpp")
2023-05-27 19:49:25 +03:00
`maven-publish`
2020-09-21 21:34:40 +03:00
}
2023-08-23 16:21:11 +03:00
description = """
Implementation of byte ports on top os ktor-io asynchronous API
""".trimIndent()
kscience {
jvm()
jvmMain {
api(projects.controlsCore)
api(spclibs.ktor.network)
}
2022-05-23 23:30:38 +03:00
}
2023-08-23 16:21:11 +03:00
readme{
maturity = Maturity.PROTOTYPE
}