c57f466494
We can't reuse caches from different platform when we compile against different jar on each platform. Since they have same api we may use platform specific jars only for runtime.
19 lines
386 B
Kotlin
19 lines
386 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:util"))
|
|
compile(project(":js:js.ast"))
|
|
compile(project(":js:js.translator"))
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
compileOnly("com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0")
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|