f4912ed433
* 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
18 lines
432 B
Kotlin
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() }
|
|
}
|