Files
kotlin-fork/js/js.parser/build.gradle.kts
T
2018-03-02 03:15:17 +03:00

16 lines
286 B
Kotlin

apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":compiler:util"))
compile(project(":js:js.ast"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}