| |
| plugins { |
| kotlin("jvm") |
| id("jps-compatible") |
| } |
| |
| dependencies { |
| compile(project(":compiler:util")) |
| compile(project(":compiler:backend")) |
| compile(project(":compiler:frontend")) |
| compile(project(":compiler:frontend.java")) |
| compileOnly(intellijCoreDep()) { includeJars("intellij-core") } |
| |
| Platform[192].orHigher { |
| compileOnly(intellijDep()) { includeJars("platform-core-ui", "platform-util-ui") } |
| } |
| |
| compileOnly(intellijDep()) { includeJars("asm-all", "trove4j", "guava", rootProject = rootProject) } |
| } |
| |
| sourceSets { |
| "main" { projectDefault() } |
| "test" {} |
| } |
| |