2019-02-01 16:38:11 +03:00
|
|
|
plugins {
|
2021-02-23 17:40:28 +03:00
|
|
|
id("ru.mipt.npm.gradle.mpp")
|
2019-02-01 16:38:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
2020-08-31 11:27:44 +03:00
|
|
|
commonMain {
|
2019-02-01 16:38:11 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2020-08-31 11:27:44 +03:00
|
|
|
jvmMain{
|
2019-02-01 16:38:11 +03:00
|
|
|
dependencies {
|
2020-08-29 11:45:31 +03:00
|
|
|
implementation(kotlin("scripting-jvm-host"))
|
2019-02-05 16:49:35 +03:00
|
|
|
implementation(kotlin("scripting-jvm"))
|
|
|
|
}
|
|
|
|
}
|
2020-08-31 11:27:44 +03:00
|
|
|
jvmTest {
|
2019-02-05 16:49:35 +03:00
|
|
|
dependencies {
|
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.3")
|
2019-02-01 16:38:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-07 12:46:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
2019-02-01 16:38:11 +03:00
|
|
|
}
|