Files
kotlin-fork/compiler/fir/fir-serialization/build.gradle.kts
T
Nikolay Lunyak caa7bee917 [FIR] KT-57835: Prevent the compiler crash
^KT-57835 Fixed
2023-04-12 10:20:44 +00:00

27 lines
729 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
implementation(project(":core:compiler.common"))
implementation(project(":core:compiler.common.jvm"))
implementation(project(":core:deserialization.common.jvm"))
implementation(project(":compiler:fir:fir-deserialization"))
implementation(project(":compiler:ir.serialization.common"))
api(project(":compiler:fir:cones"))
api(project(":compiler:fir:tree"))
api(project(":compiler:fir:java"))
api(project(":compiler:fir:providers"))
api(project(":compiler:fir:semantics"))
api(project(":compiler:fir:resolve"))
compileOnly(intellijCore())
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}