2086c5348b
Those artifact will be bundled to Kotlin K2 Plugin and would be used as a replacement for user-supplied plugins in order to avoid binary incompatibilities
13 lines
259 B
Kotlin
13 lines
259 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
publishJarsForIde(
|
|
listOf(
|
|
":kotlin-allopen-compiler-plugin.cli",
|
|
":kotlin-allopen-compiler-plugin.common",
|
|
":kotlin-allopen-compiler-plugin.k1",
|
|
":kotlin-allopen-compiler-plugin.k2",
|
|
)
|
|
)
|