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

31 lines
450 B
Plaintext

plugins {
id("scientifik.mpp")
}
description = "IO module"
scientifik{
withSerialization()
withIO()
}
kotlin {
sourceSets {
commonMain{
dependencies {
api(project(":dataforge-context"))
}
}
jvmMain{
dependencies {
}
}
jsMain{
dependencies{
api(npm("text-encoding"))
}
}
}
}