kmath/kmath-ast/build.gradle.kts

46 lines
765 B
Plaintext
Raw Normal View History

2020-12-22 13:49:32 +03:00
import ru.mipt.npm.gradle.Maturity
plugins {
id("ru.mipt.npm.mpp")
}
2020-06-12 10:40:59 +03:00
kotlin.js {
nodejs {
testTask {
useMocha().timeout = "0"
}
}
browser {
testTask {
useMocha().timeout = "0"
}
}
}
2020-06-12 10:40:59 +03:00
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-core"))
}
}
jsMain {
dependencies {
implementation(npm("astring", "1.4.3"))
}
}
jvmMain {
dependencies {
api("com.github.h0tk3y.betterParse:better-parse:0.4.0")
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-11-30 11:25:21 +03:00
2020-12-22 13:49:32 +03:00
readme {
maturity = Maturity.PROTOTYPE
}