| description = "Kotlin JavaScript Plain Objects Compiler Plugin (K2)" |
| |
| plugins { |
| kotlin("jvm") |
| } |
| |
| dependencies { |
| compileOnly(project(":compiler:fir:cones")) |
| compileOnly(project(":compiler:fir:tree")) |
| compileOnly(project(":compiler:fir:resolve")) |
| compileOnly(project(":compiler:fir:plugin-utils")) |
| compileOnly(project(":compiler:fir:entrypoint")) |
| compileOnly(project(":compiler:cli-base")) |
| |
| implementation(project(":plugins:js-plain-objects:compiler-plugin:js-plain-objects.common")) |
| |
| compileOnly(intellijCore()) |
| } |
| |
| sourceSets { |
| "main" { projectDefault() } |
| "test" { none() } |
| } |
| |
| runtimeJar() |
| sourcesJar() |
| javadocJar() |