f7a9065b75
#KTI-82
18 lines
252 B
Kotlin
18 lines
252 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":compiler:psi"))
|
|
implementation(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
} |