| plugins { | |
| kotlin("jvm") | |
| id("jps-compatible") | |
| } | |
| dependencies { | |
| api(project(":compiler:backend")) | |
| api(project(":compiler:ir.tree")) | |
| api(project(":compiler:ir.backend.common")) | |
| api(project(":compiler:backend.common.jvm")) | |
| compileOnly(intellijCore()) | |
| compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all")) | |
| } | |
| sourceSets { | |
| "main" { | |
| projectDefault() | |
| } | |
| "test" {} | |
| } |