Files
kotlin-fork/compiler/ir/serialization.js/build.gradle.kts
T
Alexander Udalov f4912ed433 Minor, simplify JS-related build files a bit
* remove test roots in modules which have no tests
* 1.8 is already the default JVM target in the project
* replace compilation dependency on kotlin-reflect with runtime
2020-01-29 18:03:22 +01:00

18 lines
432 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
// Please make sure this module doesn't depend on `backend.js` (neither directly, nor transitively)
dependencies {
compile(project(":compiler:ir.psi2ir"))
compile(project(":compiler:ir.serialization.common"))
compile(project(":js:js.frontend"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
}
sourceSets {
"main" { projectDefault() }
}