f7a9065b75
#KTI-82
21 lines
419 B
Kotlin
21 lines
419 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":compiler:psi"))
|
|
implementation(project(":compiler:frontend.java"))
|
|
implementation(project(":core:compiler.common"))
|
|
implementation(project(":analysis:project-structure"))
|
|
implementation(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
} |