blob: 675fa5b4e87b3430749176dbb80e64c0096a8b6d [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
}
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()
}