dataforge-core/dataforge-io/build.gradle.kts

29 lines
592 B
Plaintext
Raw Normal View History

2019-03-06 18:15:30 +03:00
plugins {
2021-02-23 17:40:28 +03:00
id("ru.mipt.npm.gradle.mpp")
id("ru.mipt.npm.gradle.native")
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 {
useSerialization(sourceSet = ru.mipt.npm.gradle.DependencySourceSet.TEST) {
cbor()
}
2020-03-13 19:15:37 +03:00
}
2019-03-06 18:15:30 +03:00
2021-02-28 22:03:40 +03:00
//val ioVersion by rootProject.extra("0.2.0-npm-dev-11")
2019-03-06 18:15:30 +03:00
kotlin {
sourceSets {
2019-11-30 23:36:06 +03:00
commonMain {
2019-03-06 18:15:30 +03:00
dependencies {
2019-08-07 11:38:25 +03:00
api(project(":dataforge-context"))
2021-02-28 22:03:40 +03:00
api("io.ktor:ktor-io:${ru.mipt.npm.gradle.KScienceVersions.ktorVersion}")
2019-03-06 18:15:30 +03:00
}
}
}
2021-02-07 12:46:15 +03:00
}
readme{
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
2019-03-06 18:15:30 +03:00
}