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

31 lines
632 B
Plaintext
Raw Normal View History

import space.kscience.gradle.KScienceVersions
2022-04-15 18:56:00 +03:00
2019-03-06 18:15:30 +03:00
plugins {
id("space.kscience.gradle.mpp")
id("space.kscience.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 = space.kscience.gradle.DependencySourceSet.TEST) {
2020-08-29 11:45:31 +03:00
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"))
2022-04-15 18:56:00 +03:00
api("io.ktor:ktor-io:${KScienceVersions.ktorVersion}")
2019-03-06 18:15:30 +03:00
}
}
}
2021-02-07 12:46:15 +03:00
}
readme{
maturity = space.kscience.gradle.Maturity.PROTOTYPE
2019-03-06 18:15:30 +03:00
}