4c1a66b7d6
This commit effectively proceeds with the fix [1] but now in the context of [2]. It includes jars from the assignment compiler plugin. ---------------------------------------------------------------------- [1]: https://youtrack.jetbrains.com/issue/KTIJ-24438 [2]: https://youtrack.jetbrains.com/issue/KTIJ-24390
13 lines
270 B
Kotlin
13 lines
270 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
publishJarsForIde(
|
|
listOf(
|
|
":kotlin-assignment-compiler-plugin.cli",
|
|
":kotlin-assignment-compiler-plugin.common",
|
|
":kotlin-assignment-compiler-plugin.k1",
|
|
":kotlin-assignment-compiler-plugin.k2"
|
|
)
|
|
)
|