c2cbbecfe9
This solution is temporary (see KT-64694 for details) ^KT-64312 Fixed
31 lines
757 B
Kotlin
31 lines
757 B
Kotlin
description = "Kotlin Serialization Compiler Plugin (K2)"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":compiler:fir:cones"))
|
|
compileOnly(project(":compiler:fir:tree"))
|
|
compileOnly(project(":compiler:fir:fir-serialization"))
|
|
compileOnly(project(":compiler:fir:resolve"))
|
|
compileOnly(project(":compiler:fir:plugin-utils"))
|
|
compileOnly(project(":compiler:fir:entrypoint"))
|
|
compileOnly(project(":js:js.config"))
|
|
compileOnly(project(":compiler:cli-common"))
|
|
|
|
implementation(project(":kotlinx-serialization-compiler-plugin.common"))
|
|
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
runtimeJar()
|
|
sourcesJar()
|
|
javadocJar()
|