2020-06-12 10:40:59 +03:00
|
|
|
plugins {
|
|
|
|
id("scientifik.mpp")
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:24:10 +03:00
|
|
|
repositories {
|
2020-06-12 10:40:59 +03:00
|
|
|
maven("https://dl.bintray.com/hotkeytlt/maven")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin.sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
2020-06-12 11:11:13 +03:00
|
|
|
implementation("com.github.h0tk3y.betterParse:better-parse-multiplatform:0.4.0-alpha-3")
|
2020-06-13 18:26:18 +03:00
|
|
|
implementation("com.github.h0tk3y.betterParse:better-parse-multiplatform-metadata:0.4.0-alpha-3")
|
2020-06-12 10:40:59 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-13 20:24:10 +03:00
|
|
|
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
2020-06-12 16:56:58 +03:00
|
|
|
implementation("com.github.h0tk3y.betterParse:better-parse-jvm:0.4.0-alpha-3")
|
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")
|
|
|
|
implementation(kotlin("reflect"))
|
2020-06-12 16:56:58 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-13 20:24:10 +03:00
|
|
|
|
|
|
|
jsMain {
|
|
|
|
dependencies {
|
2020-06-13 18:26:18 +03:00
|
|
|
implementation("com.github.h0tk3y.betterParse:better-parse-js:0.4.0-alpha-3")
|
|
|
|
}
|
|
|
|
}
|
2020-06-12 10:40:59 +03:00
|
|
|
}
|