| plugins { |
| kotlin("jvm") |
| id("jps-compatible") |
| } |
| |
| |
| dependencies { |
| testRuntime(intellijDep()) |
| |
| compileOnly(project(":kotlin-reflect-api")) |
| compile(project(":core:descriptors")) |
| compile(project(":core:descriptors.jvm")) |
| compile(project(":compiler:backend")) |
| compile(project(":compiler:cli-common")) |
| compile(project(":compiler:frontend")) |
| compile(project(":compiler:frontend.common")) |
| compile(project(":compiler:frontend.java")) |
| compile(project(":js:js.frontend")) |
| compile(project(":js:js.serializer")) |
| compile(project(":compiler:light-classes")) |
| compile(project(":compiler:util")) |
| compile(project(":kotlin-build-common")) |
| compile(project(":daemon-common")) |
| compile(projectRuntimeJar(":kotlin-daemon-client")) |
| compile(project(":kotlin-compiler-runner")) { isTransitive = false } |
| compile(project(":compiler:plugin-api")) |
| compile(project(":j2k")) |
| compile(project(":nj2k")) |
| compile(project(":idea")) |
| compile(project(":idea:formatter")) |
| compile(project(":idea:fir-view")) |
| compile(project(":idea:idea-core")) |
| compile(project(":idea:ide-common")) |
| compile(project(":idea:idea-jvm")) |
| compile(project(":idea:idea-jps-common")) |
| compile(project(":idea:kotlin-gradle-tooling")) |
| compile(project(":plugins:uast-kotlin")) |
| compile(project(":plugins:uast-kotlin-idea")) |
| compile(project(":kotlin-script-util")) { isTransitive = false } |
| compile(project(":kotlin-scripting-intellij")) |
| |
| compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false } |
| |
| compileOnly(project(":kotlin-daemon-client")) |
| |
| compileOnly(intellijDep()) |
| Platform[192].orHigher { |
| compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") } |
| } |
| |
| compileOnly(commonDep("com.google.code.findbugs", "jsr305")) |
| compileOnly(intellijPluginDep("IntelliLang")) |
| compileOnly(intellijPluginDep("copyright")) |
| compileOnly(intellijPluginDep("properties")) |
| compileOnly(intellijPluginDep("java-i18n")) |
| |
| testCompile(project(":kotlin-test:kotlin-test-junit")) |
| testCompile(projectTests(":compiler:tests-common")) |
| testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } |
| testCompile(project(":idea:idea-jvm")) { isTransitive = false } |
| testCompile(project(":idea:idea-gradle")) { isTransitive = false } |
| testCompile(project(":idea:idea-maven")) { isTransitive = false } |
| testCompile(project(":idea:idea-native")) { isTransitive = false } |
| testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } |
| testCompile(commonDep("junit:junit")) |
| |
| testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } |
| testRuntime(project(":kotlin-reflect")) |
| testRuntime(project(":kotlin-preloader")) |
| |
| testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false } |
| } |
| |
| sourceSets { |
| "main" { projectDefault() } |
| } |