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

28 lines
750 B
Plaintext
Raw Normal View History

2019-02-01 16:38:11 +03:00
plugins {
kotlin("multiplatform")
}
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(kotlin("test"))
implementation(kotlin("test-junit"))
implementation("ch.qos.logback:logback-classic:1.2.3")
2019-02-01 16:38:11 +03:00
}
}
}
}