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

22 lines
396 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 {
2022-08-02 09:46:31 +03:00
id("space.kscience.gradle.jvm")
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()
2020-09-21 21:34:40 +03:00
val ktorVersion: String by rootProject.extra
2022-05-23 23:30:38 +03:00
dependencies {
2023-03-01 20:59:18 +03:00
api(projects.controlsCore)
2022-05-23 23:30:38 +03:00
api("io.ktor:ktor-network:$ktorVersion")
}
2023-08-23 16:21:11 +03:00
readme{
maturity = Maturity.PROTOTYPE
}