c2cbbecfe9
This solution is temporary (see KT-64694 for details) ^KT-64312 Fixed
39 lines
1.1 KiB
Kotlin
39 lines
1.1 KiB
Kotlin
description = "Kotlin Serialization Compiler Plugin (Backend)"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":compiler:backend"))
|
|
compileOnly(project(":compiler:ir.backend.common"))
|
|
compileOnly(project(":compiler:backend.jvm"))
|
|
compileOnly(project(":compiler:backend.jvm.codegen"))
|
|
compileOnly(project(":compiler:backend.jvm.lower"))
|
|
compileOnly(project(":compiler:ir.tree"))
|
|
compileOnly(project(":compiler:fir:fir2ir"))
|
|
compileOnly(project(":compiler:fir:tree"))
|
|
compileOnly(project(":compiler:fir:fir-deserialization"))
|
|
compileOnly(project(":js:js.frontend"))
|
|
compileOnly(project(":js:js.translator"))
|
|
compileOnly(project(":kotlin-util-klib-metadata"))
|
|
compileOnly(project(":compiler:cli-common"))
|
|
|
|
implementation(project(":kotlinx-serialization-compiler-plugin.common"))
|
|
implementation(project(":kotlinx-serialization-compiler-plugin.k1"))
|
|
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
optInToUnsafeDuringIrConstructionAPI()
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
runtimeJar()
|
|
sourcesJar()
|
|
javadocJar()
|