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

24 lines
388 B
Plaintext
Raw Normal View History

2019-01-30 18:57:14 +03:00
plugins {
2020-09-05 16:19:03 +03:00
id("ru.mipt.npm.mpp")
id("ru.mipt.npm.node")
// id("ru.mipt.npm.native")
2019-01-30 18:57:14 +03:00
}
2020-08-29 11:45:31 +03:00
kscience{
useCoroutines()
}
2019-01-30 18:57:14 +03:00
kotlin {
sourceSets {
2020-08-29 11:45:31 +03:00
commonMain{
2019-01-30 18:57:14 +03:00
dependencies {
api(project(":dataforge-meta"))
}
}
2020-08-29 11:45:31 +03:00
jvmMain{
dependencies{
api(kotlin("reflect"))
2019-01-30 18:57:14 +03:00
}
}
}
}