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()