2020-09-20 12:36:48 +03:00
|
|
|
plugins {
|
2020-09-20 21:59:10 +03:00
|
|
|
id("ru.mipt.npm.mpp")
|
2020-09-20 12:36:48 +03:00
|
|
|
}
|
2020-06-12 10:40:59 +03:00
|
|
|
|
|
|
|
kotlin.sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
|
|
|
}
|
|
|
|
}
|
2020-06-13 20:24:10 +03:00
|
|
|
|
2020-12-19 20:40:18 +03:00
|
|
|
jsMain {
|
|
|
|
dependencies {
|
|
|
|
implementation(npm("astring", "1.4.3"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:24:10 +03:00
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
2020-10-13 13:34:48 +03:00
|
|
|
api("com.github.h0tk3y.betterParse:better-parse:0.4.0")
|
2020-06-13 20:24:10 +03:00
|
|
|
implementation("org.ow2.asm:asm:8.0.1")
|
|
|
|
implementation("org.ow2.asm:asm-commons:8.0.1")
|
2020-06-12 16:56:58 +03:00
|
|
|
}
|
|
|
|
}
|
2020-09-08 12:40:47 +03:00
|
|
|
}
|
2020-11-30 11:25:21 +03:00
|
|
|
|
|
|
|
readme{
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
|
|
}
|