6255efa7f7
With this commit kotlin script compiler (as a plugin) becomes available for IDE.
9 lines
106 B
Kotlin
9 lines
106 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
publishJarsForIde(
|
|
listOf(
|
|
":kotlin-scripting-compiler"
|
|
)
|
|
) |