blob: 977cd47f9f53a5df5461c257d554151969905ca8 [file]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
implementation(project(":compiler:psi:psi-api"))
implementation(kotlinxCollectionsImmutable())
implementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
implementation(intellijCore())
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
kotlin {
explicitApi()
}