| description = "Kotlin Android Extensions Compiler" |
| |
| plugins { |
| kotlin("jvm") |
| id("jps-compatible") |
| } |
| |
| dependencies { |
| testApi(intellijCore()) |
| |
| compileOnly(project(":compiler:util")) |
| compileOnly(project(":compiler:plugin-api")) |
| compileOnly(project(":compiler:frontend")) |
| compileOnly(project(":compiler:frontend.java")) |
| compileOnly(project(":compiler:cli")) |
| compileOnly(project(":kotlin-android-extensions-runtime")) |
| compileOnly(intellijCore()) |
| |
| embedded(project(":kotlin-android-extensions-runtime")) { isTransitive = false } |
| } |
| |
| sourceSets { |
| "main" { projectDefault() } |
| } |
| |
| runtimeJar() |
| |
| sourcesJar() |
| |
| javadocJar() |