Files
kotlin-fork/compiler/ir/serialization.jvm/build.gradle.kts
T
Dmitriy Novozhilov fb8bf19091 [IR] Rename IrSymbolInternals to UnsafeDuringIrConstructionAPI
The new name more precisely describes the meaning of this opt-int
2023-10-25 11:32:46 +00:00

23 lines
468 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":compiler:ir.tree"))
api(project(":compiler:ir.serialization.common"))
api(project(":core:descriptors.jvm"))
api(project(":core:metadata.jvm"))
implementation(project(":core:deserialization.common.jvm"))
api(project(":compiler:frontend.java"))
}
optInToUnsafeDuringIrConstructionAPI()
sourceSets {
"main" {
projectDefault()
}
"test" {}
}