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