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

31 lines
450 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{
2019-09-18 16:36:35 +03:00
withSerialization()
withIO()
2019-07-27 17:02:48 +03:00
}
2019-03-06 18:15:30 +03:00
kotlin {
sourceSets {
2019-08-11 18:35:03 +03:00
commonMain{
2019-03-06 18:15:30 +03:00
dependencies {
2019-08-07 11:38:25 +03:00
api(project(":dataforge-context"))
2019-09-09 16:15:35 +03:00
}
}
jvmMain{
dependencies {
2019-03-06 18:15:30 +03:00
}
}
2019-08-11 18:35:03 +03:00
jsMain{
2019-07-27 17:02:48 +03:00
dependencies{
api(npm("text-encoding"))
2019-03-06 18:15:30 +03:00
}
}
}
}