2019-02-01 16:38:11 +03:00
|
|
|
plugins {
|
2022-08-01 18:12:57 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2019-02-01 16:38:11 +03:00
|
|
|
}
|
|
|
|
|
2023-02-18 19:49:41 +03:00
|
|
|
kscience{
|
|
|
|
jvm()
|
|
|
|
dependencies {
|
|
|
|
api(projects.dataforgeWorkspace)
|
|
|
|
implementation(kotlin("scripting-common"))
|
|
|
|
}
|
|
|
|
dependencies(jvmMain){
|
|
|
|
implementation(kotlin("scripting-jvm-host"))
|
|
|
|
implementation(kotlin("scripting-jvm"))
|
|
|
|
}
|
|
|
|
dependencies(jvmTest){
|
|
|
|
implementation(spclibs.logback.classic)
|
2019-02-01 16:38:11 +03:00
|
|
|
}
|
2021-02-07 12:46:15 +03:00
|
|
|
}
|
|
|
|
|
2023-02-18 19:49:41 +03:00
|
|
|
|
2021-02-07 12:46:15 +03:00
|
|
|
readme{
|
2022-08-01 18:12:57 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
2019-02-01 16:38:11 +03:00
|
|
|
}
|