31 lines
632 B
Plaintext
31 lines
632 B
Plaintext
import space.kscience.gradle.KScienceVersions
|
|
|
|
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
id("space.kscience.gradle.native")
|
|
}
|
|
|
|
description = "IO module"
|
|
|
|
kscience {
|
|
useSerialization(sourceSet = space.kscience.gradle.DependencySourceSet.TEST) {
|
|
cbor()
|
|
}
|
|
}
|
|
|
|
//val ioVersion by rootProject.extra("0.2.0-npm-dev-11")
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":dataforge-context"))
|
|
api("io.ktor:ktor-io:${KScienceVersions.ktorVersion}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
readme{
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
|
} |