2022-08-01 18:12:57 +03:00
|
|
|
import space.kscience.gradle.KScienceVersions
|
2022-04-15 18:56:00 +03:00
|
|
|
|
2019-03-06 18:15:30 +03:00
|
|
|
plugins {
|
2022-08-01 18:12:57 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2019-03-06 18:15:30 +03:00
|
|
|
}
|
|
|
|
|
2019-07-27 17:02:48 +03:00
|
|
|
description = "IO module"
|
2019-03-06 18:15:30 +03:00
|
|
|
|
2020-08-29 11:45:31 +03:00
|
|
|
kscience {
|
2023-02-18 19:49:41 +03:00
|
|
|
jvm()
|
|
|
|
js()
|
2022-10-03 20:36:28 +03:00
|
|
|
native()
|
2023-02-18 19:49:41 +03:00
|
|
|
useSerialization("1.4.1")
|
|
|
|
useSerialization("1.4.1", sourceSet = space.kscience.gradle.DependencySourceSet.TEST) {
|
2020-08-29 11:45:31 +03:00
|
|
|
cbor()
|
|
|
|
}
|
2023-02-18 19:49:41 +03:00
|
|
|
dependencies {
|
|
|
|
api(project(":dataforge-context"))
|
|
|
|
api("io.ktor:ktor-io:${KScienceVersions.ktorVersion}")
|
2019-03-06 18:15:30 +03:00
|
|
|
}
|
2021-02-07 12:46:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
2022-08-01 18:12:57 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
2019-03-06 18:15:30 +03:00
|
|
|
}
|