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