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

26 lines
413 B
Plaintext
Raw Normal View History

2019-03-06 18:15:30 +03:00
plugins {
id("scientifik.mpp")
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
2019-07-27 17:02:48 +03:00
scientifik{
serialization = true
io = true
}
2019-03-06 18:15:30 +03:00
kotlin {
sourceSets {
val commonMain by getting{
dependencies {
2019-08-07 11:38:25 +03:00
api(project(":dataforge-context"))
2019-03-06 18:15:30 +03:00
}
}
2019-07-27 17:02:48 +03:00
val jsMain by getting{
dependencies{
api(npm("text-encoding"))
2019-03-06 18:15:30 +03:00
}
}
}
}