Files
kotlin-fork/idea/ide-common/build.gradle.kts
T
2018-03-02 03:15:17 +03:00

20 lines
522 B
Kotlin

apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java"))
compile(project(":js:js.frontend"))
compile(project(":js:js.serializer"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("annotations", "guava", rootProject = rootProject) }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}