2019-03-06 18:15:30 +03:00
|
|
|
plugins {
|
2019-06-22 14:29:37 +03:00
|
|
|
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-09-11 20:43:55 +03:00
|
|
|
|
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{
|
2019-09-11 20:43:55 +03:00
|
|
|
api(npm("text-encoding"))
|
2019-03-06 18:15:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|