20 lines
330 B
Kotlin
20 lines
330 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:compiler.common"))
|
|
implementation(project(":compiler:util"))
|
|
implementation(project(":compiler:psi"))
|
|
implementation(intellijCore())
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
}
|