kmath/kmath-ast/build.gradle.kts

19 lines
444 B
Plaintext
Raw Normal View History

plugins { id("ru.mipt.npm.mpp") }
2020-06-12 10:40:59 +03:00
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-core"))
2020-07-27 19:06:28 +03:00
implementation("com.github.h0tk3y.betterParse:better-parse:0.4.0")
2020-06-12 10:40:59 +03:00
}
}
jvmMain {
dependencies {
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
}
}
}