22 lines
446 B
Kotlin
22 lines
446 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:frontend.common"))
|
|
compile(project(":compiler:frontend.java"))
|
|
compile(project(":compiler:fir:resolve"))
|
|
compile(project(":compiler:fir:checkers"))
|
|
implementation(project(":compiler:fir:jvm"))
|
|
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
}
|
|
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|