| plugins { |
| kotlin("jvm") |
| id("jps-compatible") |
| } |
| |
| dependencies { |
| implementation(project(":core:compiler.common")) |
| implementation(project(":compiler:fir:fir-deserialization")) |
| implementation(project(":core:metadata")) |
| implementation(project(":compiler:serialization")) |
| implementation(project(":compiler:psi:psi-api")) |
| implementation(project(":kotlin-util-klib")) |
| implementation(project(":kotlin-util-klib-metadata")) |
| |
| api(project(":compiler:fir:cones")) |
| api(project(":compiler:fir:tree")) |
| api(project(":compiler:fir:fir-jvm")) |
| api(project(":compiler:fir:providers")) |
| api(project(":compiler:fir:semantics")) |
| api(project(":compiler:fir:resolve")) |
| |
| compileOnly(intellijCore()) |
| } |
| |
| sourceSets { |
| "main" { projectDefault() } |
| "test" { none() } |
| } |