2023-08-23 16:21:11 +03:00
|
|
|
import space.kscience.gradle.Maturity
|
|
|
|
|
2020-09-21 21:34:40 +03:00
|
|
|
plugins {
|
2024-05-10 11:33:00 +03:00
|
|
|
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()
|
|
|
|
|
2024-05-10 11:33:00 +03:00
|
|
|
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
|
|
|
|
}
|