blob: d85915e426d60a4714518fff3af3a6d6a2c0c175 [file] [log] [blame]
description = "Kotlin Serialization Compiler Plugin (K1)"
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compileOnly(project(":core:compiler.common.jvm"))
compileOnly(project(":compiler:frontend"))
compileOnly(project(":js:js.frontend"))
compileOnly(project(":compiler:cli-common"))
compileOnly(project(":compiler:ir.backend.common")) // needed for CompilationException
compileOnly(project(":core:deserialization.common.jvm")) // needed for CompilationException
implementation(project(":kotlinx-serialization-compiler-plugin.common"))
compileOnly(intellijCore())
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
runtimeJar()
sourcesJar()
javadocJar()