ae70edb1c8
K2 IDE support requires that the entire plugin is in a single JAR, so we
need to have the K1, K2, and CLI (CompilerPluginRegistrar) libraries
available on a single for-ide target.
This reverts commit c9badd14a7.
^KT-57795 fixed
15 lines
437 B
Kotlin
15 lines
437 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
publishJarsForIde(
|
|
listOf(
|
|
":plugins:parcelize:parcelize-compiler:parcelize.backend",
|
|
":plugins:parcelize:parcelize-compiler:parcelize.cli",
|
|
":plugins:parcelize:parcelize-compiler:parcelize.common",
|
|
":plugins:parcelize:parcelize-compiler:parcelize.k1",
|
|
":plugins:parcelize:parcelize-compiler:parcelize.k2",
|
|
":plugins:parcelize:parcelize-runtime"
|
|
)
|
|
)
|