blob: bb6b52645e12ee0402723bf755cc60ecc5a47604 [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compileOnly(project(":js:js.ast"))
compileOnly(project(":js:js.parser")) // TODO remove, required for JSON AST
compileOnly(project(":js:js.frontend")) // TODO remove
compileOnly(intellijCore())
compileOnly(commonDependency("org.jetbrains.intellij.deps:trove4j"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}