2019-02-01 16:38:11 +03:00
|
|
|
plugins {
|
2019-06-22 14:29:37 +03:00
|
|
|
id("scientifik.mpp")
|
2019-02-01 16:38:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvm()
|
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
|
|
|
api(project(":dataforge-workspace"))
|
2019-02-05 16:49:35 +03:00
|
|
|
implementation(kotlin("scripting-common"))
|
2019-02-01 16:38:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
val jvmMain by getting {
|
|
|
|
dependencies {
|
2019-02-05 16:49:35 +03:00
|
|
|
implementation(kotlin("scripting-jvm-host-embeddable"))
|
|
|
|
implementation(kotlin("scripting-jvm"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
val jvmTest by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.3")
|
2019-02-01 16:38:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|