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