Remove projectDist dependency helper usages

Use default configuration dependencies instead of projectDist ones.
This commit is contained in:
Ilya Gorbunov
2018-08-02 17:22:13 +03:00
parent 03340d770b
commit a18770fbbb
93 changed files with 164 additions and 164 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ plugins {
dependencies { dependencies {
compile(commonDep("org.apache.ant", "ant")) compile(commonDep("org.apache.ant", "ant"))
compile(project(":kotlin-preloader")) compile(project(":kotlin-preloader"))
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
} }
sourceSets { sourceSets {
+2 -2
View File
@@ -21,10 +21,10 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(protobufFull()) testCompile(protobufFull())
testCompile(projectDist(":kotlin-stdlib")) testCompile(project(":kotlin-stdlib"))
testCompileOnly(intellijDep()) { includeJars("openapi") } testCompileOnly(intellijDep()) { includeJars("openapi") }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
} }
sourceSets { sourceSets {
+5 -5
View File
@@ -67,11 +67,11 @@ dependencies {
testRuntime(intellijDep()) // Should come before compiler, because of "progarded" stuff needed for tests testRuntime(intellijDep()) // Should come before compiler, because of "progarded" stuff needed for tests
depDistProjects.forEach { depDistProjects.forEach {
testCompile(projectDist(it)) testCompile(project(it))
} }
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompileOnly(projectDist(":kotlin-test:kotlin-test-jvm")) testCompileOnly(project(":kotlin-test:kotlin-test-jvm"))
testCompileOnly(projectDist(":kotlin-test:kotlin-test-junit")) testCompileOnly(project(":kotlin-test:kotlin-test-junit"))
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":generators:test-generator")) testCompile(projectTests(":generators:test-generator"))
testCompile(project(":compiler:ir.ir2cfg")) testCompile(project(":compiler:ir.ir2cfg"))
@@ -86,8 +86,8 @@ dependencies {
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") } testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "idea_rt", "util", "asm-all") } testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "idea_rt", "util", "asm-all") }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-daemon-client")) testRuntime(project(":kotlin-daemon-client"))
testRuntime(androidDxJar()) testRuntime(androidDxJar())
testRuntime(files(toolsJar())) testRuntime(files(toolsJar()))
+1 -1
View File
@@ -9,7 +9,7 @@ plugins {
jvmTarget = "1.6" jvmTarget = "1.6"
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
} }
sourceSets { sourceSets {
+4 -4
View File
@@ -9,11 +9,11 @@ jvmTarget = "1.6"
dependencies { dependencies {
compile(project(":core:util.runtime")) compile(project(":core:util.runtime"))
compile(commonDep("javax.inject")) compile(commonDep("javax.inject"))
compileOnly(projectDist(":kotlin-stdlib")) compileOnly(project(":kotlin-stdlib"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") } compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
testCompile(projectDist(":kotlin-stdlib")) testCompile(project(":kotlin-stdlib"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(intellijCoreDep()) { includeJars("intellij-core") } testCompile(intellijCoreDep()) { includeJars("intellij-core") }
testRuntime(intellijDep()) { includeJars("trove4j") } testRuntime(intellijDep()) { includeJars("trove4j") }
@@ -11,7 +11,7 @@ dependencies {
compile(project(":core:descriptors.jvm")) compile(project(":core:descriptors.jvm"))
compile(project(":compiler:util")) compile(project(":compiler:util"))
compile(project(":compiler:cli-common")) compile(project(":compiler:cli-common"))
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compileOnly(project(":js:js.frontend")) compileOnly(project(":js:js.frontend"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") } compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) } compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) }
+1 -1
View File
@@ -10,7 +10,7 @@ jvmTarget = "1.6"
dependencies { dependencies {
compile(project(":compiler:util")) compile(project(":compiler:util"))
compile(project(":compiler:frontend")) compile(project(":compiler:frontend"))
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false } compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
compileOnly(intellijCoreDep()) { includeJars("intellij-core") } compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
@@ -20,8 +20,8 @@ dependencies {
compileOnly(intellijDep()) { includeJars("annotations") } compileOnly(intellijDep()) { includeJars("annotations") }
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(projectDist(":kotlin-stdlib")) testCompile(project(":kotlin-stdlib"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(intellijCoreDep()) { includeJars("intellij-core") } testCompile(intellijCoreDep()) { includeJars("intellij-core") }
+2 -2
View File
@@ -7,8 +7,8 @@ plugins {
jvmTarget = "1.6" jvmTarget = "1.6"
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
} }
sourceSets { sourceSets {
+1 -1
View File
@@ -24,7 +24,7 @@ dependencies {
testCompile(project(":js:js.frontend")) testCompile(project(":js:js.frontend"))
testCompile(project(":js:js.translator")) testCompile(project(":js:js.translator"))
testCompileOnly(project(":plugins:android-extensions-compiler")) testCompileOnly(project(":plugins:android-extensions-compiler"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":compiler:tests-common-jvm6")) testCompile(projectTests(":compiler:tests-common-jvm6"))
testCompileOnly(project(":kotlin-reflect-api")) testCompileOnly(project(":kotlin-reflect-api"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
+1 -1
View File
@@ -24,7 +24,7 @@ dependencies {
testCompile(project(":js:js.frontend")) testCompile(project(":js:js.frontend"))
testCompile(project(":js:js.translator")) testCompile(project(":js:js.translator"))
testCompileOnly(project(":plugins:android-extensions-compiler")) testCompileOnly(project(":plugins:android-extensions-compiler"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":compiler:tests-common-jvm6")) testCompile(projectTests(":compiler:tests-common-jvm6"))
testCompileOnly(project(":kotlin-reflect-api")) testCompileOnly(project(":kotlin-reflect-api"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
+1 -1
View File
@@ -24,7 +24,7 @@ dependencies {
testCompile(project(":js:js.frontend")) testCompile(project(":js:js.frontend"))
testCompile(project(":js:js.translator")) testCompile(project(":js:js.translator"))
testCompileOnly(project(":plugins:android-extensions-compiler")) testCompileOnly(project(":plugins:android-extensions-compiler"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":compiler:tests-common-jvm6")) testCompile(projectTests(":compiler:tests-common-jvm6"))
testCompileOnly(project(":kotlin-reflect-api")) testCompileOnly(project(":kotlin-reflect-api"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
+1 -1
View File
@@ -9,7 +9,7 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(intellijCoreDep()) { includeJars("intellij-core") } testCompile(intellijCoreDep()) { includeJars("intellij-core") }
testCompile(projectTests(":generators:test-generator")) testCompile(projectTests(":generators:test-generator"))
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(intellijDep()) testRuntime(intellijDep())
} }
+1 -1
View File
@@ -7,7 +7,7 @@ plugins {
jvmTarget = "1.6" jvmTarget = "1.6"
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":core:deserialization")) compile(project(":core:deserialization"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") } compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) } compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) }
+1 -1
View File
@@ -8,7 +8,7 @@ javaHome = rootProject.extra["JDK_16"] as String
dependencies { dependencies {
compile(project(":core:util.runtime")) compile(project(":core:util.runtime"))
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":kotlin-annotations-jvm")) compile(project(":kotlin-annotations-jvm"))
} }
+1 -1
View File
@@ -10,7 +10,7 @@ javaHome = rootProject.extra["JDK_16"] as String
dependencies { dependencies {
compile(protobufLite()) compile(protobufLite())
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
} }
sourceSets { sourceSets {
+1 -1
View File
@@ -9,7 +9,7 @@ jvmTarget = "1.6"
javaHome = rootProject.extra["JDK_16"] as String javaHome = rootProject.extra["JDK_16"] as String
dependencies { dependencies {
compileOnly(projectDist(":kotlin-stdlib")) compileOnly(project(":kotlin-stdlib"))
} }
sourceSets { sourceSets {
+2 -2
View File
@@ -5,11 +5,11 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":compiler:backend")) compile(project(":compiler:backend"))
compile(files(toolsJar())) compile(files(toolsJar()))
compileOnly(intellijDep()) { includeJars("asm-all") } compileOnly(intellijDep()) { includeJars("asm-all") }
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(intellijDep()) { includeJars("asm-all") } testCompile(intellijDep()) { includeJars("asm-all") }
} }
+1 -1
View File
@@ -34,7 +34,7 @@ dependencies {
testCompile(intellijDep("jps-build-test")) testCompile(intellijDep("jps-build-test"))
testCompile(builtinsSourceSet.output) testCompile(builtinsSourceSet.output)
testRuntime(intellijDep()) { includeJars("idea_rt") } testRuntime(intellijDep()) { includeJars("idea_rt") }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
} }
+1 -1
View File
@@ -33,7 +33,7 @@ dependencies {
testCompileOnly(project(":kotlin-reflect-api")) testCompileOnly(project(":kotlin-reflect-api"))
testCompile(builtinsSourceSet.output) testCompile(builtinsSourceSet.output)
testRuntime(intellijDep()) { includeJars("idea_rt") } testRuntime(intellijDep()) { includeJars("idea_rt") }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
} }
+1 -1
View File
@@ -33,7 +33,7 @@ dependencies {
testCompileOnly(project(":kotlin-reflect-api")) testCompileOnly(project(":kotlin-reflect-api"))
testCompile(builtinsSourceSet.output) testCompile(builtinsSourceSet.output)
testRuntime(intellijDep()) { includeJars("idea_rt") } testRuntime(intellijDep()) { includeJars("idea_rt") }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
} }
+1 -1
View File
@@ -33,7 +33,7 @@ dependencies {
testCompileOnly(project(":kotlin-reflect-api")) testCompileOnly(project(":kotlin-reflect-api"))
testCompile(builtinsSourceSet.output) testCompile(builtinsSourceSet.output)
testRuntime(intellijDep()) { includeJars("idea_rt") } testRuntime(intellijDep()) { includeJars("idea_rt") }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
} }
+1 -1
View File
@@ -10,7 +10,7 @@ dependencies {
compile(intellijDep()) { includeJars("util") } compile(intellijDep()) { includeJars("util") }
testCompile(project(":core:util.runtime")) testCompile(project(":core:util.runtime"))
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectDist(":kotlin-stdlib")) testCompile(project(":kotlin-stdlib"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
} }
+3 -3
View File
@@ -12,7 +12,7 @@ repositories {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib-jre8")) compile(project(":kotlin-stdlib-jre8"))
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(project(":core:descriptors")) compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm")) compile(project(":core:descriptors.jvm"))
@@ -68,8 +68,8 @@ dependencies {
testRuntime(commonDep("org.jetbrains", "markdown")) testRuntime(commonDep("org.jetbrains", "markdown"))
testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-preloader")) testRuntime(project(":kotlin-preloader"))
testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false } testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false }
+3 -3
View File
@@ -12,7 +12,7 @@ repositories {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib-jre8")) compile(project(":kotlin-stdlib-jre8"))
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(project(":core:descriptors")) compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm")) compile(project(":core:descriptors.jvm"))
@@ -68,8 +68,8 @@ dependencies {
testRuntime(commonDep("org.jetbrains", "markdown")) testRuntime(commonDep("org.jetbrains", "markdown"))
testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-preloader")) testRuntime(project(":kotlin-preloader"))
testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false } testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false }
+3 -3
View File
@@ -12,7 +12,7 @@ repositories {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib-jre8")) compile(project(":kotlin-stdlib-jre8"))
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(project(":core:descriptors")) compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm")) compile(project(":core:descriptors.jvm"))
@@ -68,8 +68,8 @@ dependencies {
testRuntime(commonDep("org.jetbrains", "markdown")) testRuntime(commonDep("org.jetbrains", "markdown"))
testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-preloader")) testRuntime(project(":kotlin-preloader"))
testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false } testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false }
+3 -3
View File
@@ -12,7 +12,7 @@ repositories {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib-jre8")) compile(project(":kotlin-stdlib-jre8"))
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(project(":core:descriptors")) compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm")) compile(project(":core:descriptors.jvm"))
@@ -68,8 +68,8 @@ dependencies {
testRuntime(commonDep("org.jetbrains", "markdown")) testRuntime(commonDep("org.jetbrains", "markdown"))
testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-preloader")) testRuntime(project(":kotlin-preloader"))
testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false } testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false }
+3 -3
View File
@@ -12,7 +12,7 @@ repositories {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib-jre8")) compile(project(":kotlin-stdlib-jre8"))
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(project(":core:descriptors")) compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm")) compile(project(":core:descriptors.jvm"))
@@ -68,8 +68,8 @@ dependencies {
testRuntime(commonDep("org.jetbrains", "markdown")) testRuntime(commonDep("org.jetbrains", "markdown"))
testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-preloader")) testRuntime(project(":kotlin-preloader"))
testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false } testCompile(project(":kotlin-sam-with-receiver-compiler-plugin")) { isTransitive = false }
+2 -2
View File
@@ -26,7 +26,7 @@ dependencies {
compileOnly(intellijDep()) compileOnly(intellijDep())
compileOnly(intellijPluginDep("android")) compileOnly(intellijPluginDep("android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(project(":plugins:lint")) { isTransitive = false } testCompile(project(":plugins:lint")) { isTransitive = false }
testCompile(project(":idea:idea-jvm")) testCompile(project(":idea:idea-jvm"))
@@ -44,7 +44,7 @@ dependencies {
testCompile(intellijPluginDep("properties")) testCompile(intellijPluginDep("properties"))
testCompileOnly(intellijPluginDep("android")) testCompileOnly(intellijPluginDep("android"))
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
testRuntime(project(":sam-with-receiver-ide-plugin")) testRuntime(project(":sam-with-receiver-ide-plugin"))
+2 -2
View File
@@ -26,7 +26,7 @@ dependencies {
compileOnly(intellijDep()) compileOnly(intellijDep())
compileOnly(intellijPluginDep("android")) compileOnly(intellijPluginDep("android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(project(":plugins:lint")) { isTransitive = false } testCompile(project(":plugins:lint")) { isTransitive = false }
testCompile(project(":idea:idea-jvm")) testCompile(project(":idea:idea-jvm"))
@@ -44,7 +44,7 @@ dependencies {
testCompile(intellijPluginDep("properties")) testCompile(intellijPluginDep("properties"))
testCompileOnly(intellijPluginDep("android")) testCompileOnly(intellijPluginDep("android"))
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
testRuntime(project(":sam-with-receiver-ide-plugin")) testRuntime(project(":sam-with-receiver-ide-plugin"))
+2 -2
View File
@@ -26,7 +26,7 @@ dependencies {
compileOnly(intellijDep()) compileOnly(intellijDep())
compileOnly(intellijPluginDep("android")) compileOnly(intellijPluginDep("android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(project(":plugins:lint")) { isTransitive = false } testCompile(project(":plugins:lint")) { isTransitive = false }
testCompile(project(":idea:idea-jvm")) testCompile(project(":idea:idea-jvm"))
@@ -44,7 +44,7 @@ dependencies {
testCompile(intellijPluginDep("properties")) testCompile(intellijPluginDep("properties"))
testCompileOnly(intellijPluginDep("android")) testCompileOnly(intellijPluginDep("android"))
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
testRuntime(project(":sam-with-receiver-ide-plugin")) testRuntime(project(":sam-with-receiver-ide-plugin"))
+2 -2
View File
@@ -26,7 +26,7 @@ dependencies {
compileOnly(intellijDep()) compileOnly(intellijDep())
compileOnly(intellijPluginDep("android")) compileOnly(intellijPluginDep("android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(project(":plugins:lint")) { isTransitive = false } testCompile(project(":plugins:lint")) { isTransitive = false }
testCompile(project(":idea:idea-jvm")) testCompile(project(":idea:idea-jvm"))
@@ -44,7 +44,7 @@ dependencies {
testCompile(intellijPluginDep("properties")) testCompile(intellijPluginDep("properties"))
testCompileOnly(intellijPluginDep("android")) testCompileOnly(intellijPluginDep("android"))
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
testRuntime(project(":sam-with-receiver-ide-plugin")) testRuntime(project(":sam-with-receiver-ide-plugin"))
+2 -2
View File
@@ -26,7 +26,7 @@ dependencies {
compileOnly(intellijDep()) compileOnly(intellijDep())
compileOnly(intellijPluginDep("android")) compileOnly(intellijPluginDep("android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(project(":plugins:lint")) { isTransitive = false } testCompile(project(":plugins:lint")) { isTransitive = false }
testCompile(project(":idea:idea-jvm")) testCompile(project(":idea:idea-jvm"))
@@ -44,7 +44,7 @@ dependencies {
testCompile(intellijPluginDep("properties")) testCompile(intellijPluginDep("properties"))
testCompileOnly(intellijPluginDep("android")) testCompileOnly(intellijPluginDep("android"))
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
testRuntime(project(":sam-with-receiver-ide-plugin")) testRuntime(project(":sam-with-receiver-ide-plugin"))
+1 -1
View File
@@ -5,7 +5,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(project(":core:descriptors")) compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm")) compile(project(":core:descriptors.jvm"))
+1 -1
View File
@@ -34,7 +34,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
+1 -1
View File
@@ -34,7 +34,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
+1 -1
View File
@@ -34,7 +34,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
+1 -1
View File
@@ -34,7 +34,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
+1 -1
View File
@@ -34,7 +34,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
+1 -1
View File
@@ -5,7 +5,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(project(":compiler:util")) compile(project(":compiler:util"))
compile(project(":compiler:cli-common")) compile(project(":compiler:cli-common"))
+1 -1
View File
@@ -32,7 +32,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
+1 -1
View File
@@ -32,7 +32,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
+1 -1
View File
@@ -32,7 +32,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
+1 -1
View File
@@ -32,7 +32,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
+1 -1
View File
@@ -32,7 +32,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-jvm")) testRuntime(project(":idea:idea-jvm"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
+1 -1
View File
@@ -9,7 +9,7 @@ plugins {
jvmTarget = "1.6" jvmTarget = "1.6"
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":compiler:cli-common")) compile(project(":compiler:cli-common"))
compile(intellijPluginDep("gradle")) compile(intellijPluginDep("gradle"))
} }
+2 -2
View File
@@ -7,7 +7,7 @@ plugins {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":compiler:frontend")) compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java")) compile(project(":compiler:frontend.java"))
compile(project(":compiler:light-classes")) compile(project(":compiler:light-classes"))
@@ -17,7 +17,7 @@ dependencies {
testCompile(project(":idea")) testCompile(project(":idea"))
testCompile(projectTests(":idea:idea-test-framework")) testCompile(projectTests(":idea:idea-test-framework"))
testCompile(project(":compiler:light-classes")) testCompile(project(":compiler:light-classes"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompileOnly(intellijDep()) { includeJars("platform-api", "platform-impl") } testCompileOnly(intellijDep()) { includeJars("platform-api", "platform-impl") }
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
+2 -2
View File
@@ -7,7 +7,7 @@ plugins {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":compiler:frontend")) compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java")) compile(project(":compiler:frontend.java"))
compile(project(":compiler:light-classes")) compile(project(":compiler:light-classes"))
@@ -17,7 +17,7 @@ dependencies {
testCompile(project(":idea")) testCompile(project(":idea"))
testCompile(projectTests(":idea:idea-test-framework")) testCompile(projectTests(":idea:idea-test-framework"))
testCompile(project(":compiler:light-classes")) testCompile(project(":compiler:light-classes"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false }
+2 -2
View File
@@ -7,7 +7,7 @@ plugins {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":compiler:frontend")) compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java")) compile(project(":compiler:frontend.java"))
compile(project(":compiler:light-classes")) compile(project(":compiler:light-classes"))
@@ -17,7 +17,7 @@ dependencies {
testCompile(project(":idea")) testCompile(project(":idea"))
testCompile(projectTests(":idea:idea-test-framework")) testCompile(projectTests(":idea:idea-test-framework"))
testCompile(project(":compiler:light-classes")) testCompile(project(":compiler:light-classes"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false }
+2 -2
View File
@@ -7,7 +7,7 @@ plugins {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":compiler:frontend")) compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java")) compile(project(":compiler:frontend.java"))
compile(project(":compiler:light-classes")) compile(project(":compiler:light-classes"))
@@ -17,7 +17,7 @@ dependencies {
testCompile(project(":idea")) testCompile(project(":idea"))
testCompile(projectTests(":idea:idea-test-framework")) testCompile(projectTests(":idea:idea-test-framework"))
testCompile(project(":compiler:light-classes")) testCompile(project(":compiler:light-classes"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompileOnly(intellijDep()) { includeJars("idea") } testCompileOnly(intellijDep()) { includeJars("idea") }
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
+2 -2
View File
@@ -7,7 +7,7 @@ plugins {
dependencies { dependencies {
testRuntime(intellijDep()) testRuntime(intellijDep())
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":compiler:frontend")) compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java")) compile(project(":compiler:frontend.java"))
compile(project(":compiler:light-classes")) compile(project(":compiler:light-classes"))
@@ -17,7 +17,7 @@ dependencies {
testCompile(project(":idea")) testCompile(project(":idea"))
testCompile(projectTests(":idea:idea-test-framework")) testCompile(projectTests(":idea:idea-test-framework"))
testCompile(project(":compiler:light-classes")) testCompile(project(":compiler:light-classes"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompileOnly(intellijDep()) { includeJars("platform-api", "platform-impl") } testCompileOnly(intellijDep()) { includeJars("platform-api", "platform-impl") }
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
+3 -3
View File
@@ -24,7 +24,7 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler:incremental-compilation-impl")) testCompile(projectTests(":compiler:incremental-compilation-impl"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") } testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") }
testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "platform-api", "log4j") } testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "platform-api", "log4j") }
@@ -34,8 +34,8 @@ dependencies {
testRuntime(project(it)) testRuntime(project(it))
} }
testRuntime(intellijDep()) testRuntime(intellijDep())
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-script-runtime")) testRuntime(project(":kotlin-script-runtime"))
} }
sourceSets { sourceSets {
+3 -3
View File
@@ -24,7 +24,7 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler:incremental-compilation-impl")) testCompile(projectTests(":compiler:incremental-compilation-impl"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") } testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") }
testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "log4j") } testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "log4j") }
@@ -34,8 +34,8 @@ dependencies {
testRuntime(project(it)) testRuntime(project(it))
} }
testRuntime(intellijDep()) testRuntime(intellijDep())
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-script-runtime")) testRuntime(project(":kotlin-script-runtime"))
} }
sourceSets { sourceSets {
+3 -3
View File
@@ -24,7 +24,7 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler:incremental-compilation-impl")) testCompile(projectTests(":compiler:incremental-compilation-impl"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") } testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") }
testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "log4j") } testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "log4j") }
@@ -33,8 +33,8 @@ dependencies {
testRuntime(project(it)) testRuntime(project(it))
} }
testRuntime(intellijDep()) testRuntime(intellijDep())
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-script-runtime")) testRuntime(project(":kotlin-script-runtime"))
} }
sourceSets { sourceSets {
+3 -3
View File
@@ -24,7 +24,7 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler:incremental-compilation-impl")) testCompile(projectTests(":compiler:incremental-compilation-impl"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") } testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") }
testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "platform-api", "log4j") } testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "platform-api", "log4j") }
@@ -33,8 +33,8 @@ dependencies {
testRuntime(project(it)) testRuntime(project(it))
} }
testRuntime(intellijDep()) testRuntime(intellijDep())
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-script-runtime")) testRuntime(project(":kotlin-script-runtime"))
} }
sourceSets { sourceSets {
+2 -2
View File
@@ -24,7 +24,7 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler:incremental-compilation-impl")) testCompile(projectTests(":compiler:incremental-compilation-impl"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") } testCompileOnly(intellijDep("jps-standalone")) { includeJars("jps-builders", "jps-builders-6") }
testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "platform-api", "log4j") } testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "platform-api", "log4j") }
@@ -33,7 +33,7 @@ dependencies {
testRuntime(project(it)) testRuntime(project(it))
} }
testRuntime(intellijDep()) testRuntime(intellijDep())
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
} }
sourceSets { sourceSets {
+5 -5
View File
@@ -33,11 +33,11 @@ dependencies {
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompile(projectTests(":generators:test-generator")) testCompile(projectTests(":generators:test-generator"))
testRuntime(projectDist(":kotlin-stdlib")) testRuntime(project(":kotlin-stdlib"))
testJsRuntime(projectDist(":kotlin-stdlib-js")) testJsRuntime(project(":kotlin-stdlib-js"))
testJsRuntime(projectDist(":kotlin-test:kotlin-test-js")) // to be sure that kotlin-test-js built before tests runned testJsRuntime(project(":kotlin-test:kotlin-test-js")) // to be sure that kotlin-test-js built before tests runned
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(projectDist(":kotlin-preloader")) // it's required for ant tests testRuntime(project(":kotlin-preloader")) // it's required for ant tests
testRuntime(project(":compiler:backend-common")) testRuntime(project(":compiler:backend-common"))
testRuntime(commonDep("org.fusesource.jansi", "jansi")) testRuntime(commonDep("org.fusesource.jansi", "jansi"))
@@ -6,7 +6,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
} }
sourceSets { sourceSets {
@@ -17,9 +17,9 @@ dependencies {
testCompile(project(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testRuntime(project(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
compilerClasspath(projectRuntimeJar(":kotlin-compiler-embeddable")) compilerClasspath(projectRuntimeJar(":kotlin-compiler-embeddable"))
compilerClasspath(projectDist(":kotlin-reflect")) compilerClasspath(project(":kotlin-reflect"))
compilerClasspath(projectDist(":kotlin-stdlib")) compilerClasspath(project(":kotlin-stdlib"))
compilerClasspath(projectDist(":kotlin-script-runtime")) compilerClasspath(project(":kotlin-script-runtime"))
} }
projectTest { projectTest {
@@ -6,13 +6,13 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":kotlin-script-runtime")) compile(project(":kotlin-script-runtime"))
compile(projectRuntimeJar(":kotlin-compiler-embeddable")) compile(projectRuntimeJar(":kotlin-compiler-embeddable"))
compile(project(":kotlin-script-util")) compile(project(":kotlin-script-util"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
} }
projectTest() projectTest()
@@ -44,7 +44,7 @@ dependencies {
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(intellijDep()) { includeJars("asm-all", rootProject = rootProject) } testCompile(intellijDep()) { includeJars("asm-all", rootProject = rootProject) }
testCompileOnly(project(":kotlin-reflect-api")) testCompileOnly(project(":kotlin-reflect-api"))
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
} }
noDefaultJar() noDefaultJar()
+1 -1
View File
@@ -46,7 +46,7 @@ configurations.getByName("compileOnly").extendsFrom(shadows)
val mainJar by configurations.creating val mainJar by configurations.creating
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
proguardDeps(project(":kotlin-stdlib")) proguardDeps(project(":kotlin-stdlib"))
proguardDeps(project(":kotlin-annotations-jvm")) proguardDeps(project(":kotlin-annotations-jvm"))
@@ -11,7 +11,7 @@ plugins {
val packedJars by configurations.creating val packedJars by configurations.creating
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
packedJars(project(":kotlin-annotation-processing")) { isTransitive = false } packedJars(project(":kotlin-annotation-processing")) { isTransitive = false }
runtime(projectRuntimeJar(":kotlin-compiler-embeddable")) runtime(projectRuntimeJar(":kotlin-compiler-embeddable"))
} }
@@ -7,7 +7,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":kotlin-script-runtime")) compile(project(":kotlin-script-runtime"))
compileOnly(project(":compiler:cli")) compileOnly(project(":compiler:cli"))
compileOnly(project(":compiler:daemon-common")) compileOnly(project(":compiler:daemon-common"))
@@ -7,7 +7,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":kotlin-script-runtime")) compile(project(":kotlin-script-runtime"))
compileOnly(project(":compiler:cli")) compileOnly(project(":compiler:cli"))
compileOnly(project(":compiler:daemon-common")) compileOnly(project(":compiler:daemon-common"))
@@ -7,7 +7,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":kotlin-script-runtime")) compile(project(":kotlin-script-runtime"))
compileOnly(project(":compiler:cli")) compileOnly(project(":compiler:cli"))
compileOnly(project(":compiler:daemon-common")) compileOnly(project(":compiler:daemon-common"))
+1 -1
View File
@@ -11,7 +11,7 @@ dependencies {
compileOnly(project(":compiler:frontend")) compileOnly(project(":compiler:frontend"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") } compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
runtime(projectDist(":kotlin-stdlib")) runtime(project(":kotlin-stdlib"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler")) testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
@@ -25,7 +25,7 @@ dependencies {
testCompile(project(":compiler:cli")) testCompile(project(":compiler:cli"))
testCompile(project(":kotlin-android-extensions-runtime")) testCompile(project(":kotlin-android-extensions-runtime"))
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testRuntime(intellijPluginDep("junit")) { includeJars("idea-junit", "resources_en") } testRuntime(intellijPluginDep("junit")) { includeJars("idea-junit", "resources_en") }
@@ -30,13 +30,13 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":idea")) testCompile(projectTests(":idea"))
testCompile(projectTests(":idea:idea-android")) testCompile(projectTests(":idea:idea-android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testCompile(intellijPluginDep("android")) testCompile(intellijPluginDep("android"))
testCompile(intellijPluginDep("Groovy")) testCompile(intellijPluginDep("Groovy"))
testCompile(intellijDep()) testCompile(intellijDep())
@@ -30,13 +30,13 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":idea")) testCompile(projectTests(":idea"))
testCompile(projectTests(":idea:idea-android")) testCompile(projectTests(":idea:idea-android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testCompile(intellijPluginDep("android")) testCompile(intellijPluginDep("android"))
testCompile(intellijPluginDep("Groovy")) testCompile(intellijPluginDep("Groovy"))
testCompile(intellijDep()) testCompile(intellijDep())
@@ -30,13 +30,13 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":idea")) testCompile(projectTests(":idea"))
testCompile(projectTests(":idea:idea-android")) testCompile(projectTests(":idea:idea-android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testCompile(intellijPluginDep("android")) testCompile(intellijPluginDep("android"))
testCompile(intellijPluginDep("Groovy")) testCompile(intellijPluginDep("Groovy"))
testCompile(intellijDep()) testCompile(intellijDep())
@@ -30,13 +30,13 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":idea")) testCompile(projectTests(":idea"))
testCompile(projectTests(":idea:idea-android")) testCompile(projectTests(":idea:idea-android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testCompile(intellijPluginDep("android")) testCompile(intellijPluginDep("android"))
testCompile(intellijPluginDep("Groovy")) testCompile(intellijPluginDep("Groovy"))
testCompile(intellijDep()) testCompile(intellijDep())
@@ -30,13 +30,13 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":idea")) testCompile(projectTests(":idea"))
testCompile(projectTests(":idea:idea-android")) testCompile(projectTests(":idea:idea-android"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(project(":idea:idea-native")) { isTransitive = false } testCompile(project(":idea:idea-native")) { isTransitive = false }
testCompile(project(":idea:idea-gradle-native")) { isTransitive = false } testCompile(project(":idea:idea-gradle-native")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testCompile(intellijPluginDep("android")) testCompile(intellijPluginDep("android"))
testCompile(intellijPluginDep("Groovy")) testCompile(intellijPluginDep("Groovy"))
testCompile(intellijDep()) testCompile(intellijDep())
@@ -16,7 +16,7 @@ dependencies {
testCompile(projectTests(":jps-plugin")) testCompile(projectTests(":jps-plugin"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompileOnly(intellijDep()) { includeJars("openapi", "jps-builders") } testCompileOnly(intellijDep()) { includeJars("openapi", "jps-builders") }
testCompileOnly(intellijDep("jps-build-test")) { includeJars("jps-build-test") } testCompileOnly(intellijDep("jps-build-test")) { includeJars("jps-build-test") }
@@ -16,7 +16,7 @@ dependencies {
testCompile(projectTests(":jps-plugin")) testCompile(projectTests(":jps-plugin"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompileOnly(intellijDep()) { includeJars("openapi", "jps-builders") } testCompileOnly(intellijDep()) { includeJars("openapi", "jps-builders") }
testCompileOnly(intellijDep("jps-build-test")) { includeJars("jps-build-test") } testCompileOnly(intellijDep("jps-build-test")) { includeJars("jps-build-test") }
@@ -16,7 +16,7 @@ dependencies {
testCompile(projectTests(":jps-plugin")) testCompile(projectTests(":jps-plugin"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompileOnly(intellijDep()) { includeJars("openapi", "jps-builders") } testCompileOnly(intellijDep()) { includeJars("openapi", "jps-builders") }
testCompileOnly(intellijDep("jps-build-test")) { includeJars("jps-build-test") } testCompileOnly(intellijDep("jps-build-test")) { includeJars("jps-build-test") }
@@ -16,7 +16,7 @@ dependencies {
testCompile(projectTests(":jps-plugin")) testCompile(projectTests(":jps-plugin"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":kotlin-build-common")) testCompile(projectTests(":kotlin-build-common"))
testCompileOnly(intellijDep()) { includeJars("openapi", "jps-builders") } testCompileOnly(intellijDep()) { includeJars("openapi", "jps-builders") }
testCompileOnly(intellijDep("jps-build-test")) { includeJars("jps-build-test") } testCompileOnly(intellijDep("jps-build-test")) { includeJars("jps-build-test") }
@@ -8,7 +8,7 @@ plugins {
jvmTarget = "1.6" jvmTarget = "1.6"
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compileOnly(commonDep("com.google.android", "android")) compileOnly(commonDep("com.google.android", "android"))
} }
+1 -1
View File
@@ -4,7 +4,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(files("${System.getProperty("java.home")}/../lib/tools.jar")) compile(files("${System.getProperty("java.home")}/../lib/tools.jar"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
} }
+1 -1
View File
@@ -7,7 +7,7 @@ plugins {
jvmTarget = "1.6" jvmTarget = "1.6"
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":compiler:frontend")) compile(project(":compiler:frontend"))
compile(project(":idea")) { isTransitive = false } compile(project(":idea")) { isTransitive = false }
compile(project(":idea:kotlin-gradle-tooling")) compile(project(":idea:kotlin-gradle-tooling"))
+1 -1
View File
@@ -6,7 +6,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
} }
jvmTarget = "1.6" jvmTarget = "1.6"
@@ -17,7 +17,7 @@ dependencies {
compile(project(":js:js.frontend")) compile(project(":js:js.frontend"))
compile(project(":js:js.translator")) compile(project(":js:js.translator"))
runtime(projectDist(":kotlin-stdlib")) runtime(project(":kotlin-stdlib"))
} }
sourceSets { sourceSets {
+1 -1
View File
@@ -14,7 +14,7 @@ dependencies {
compileOnly(project(":compiler:plugin-api")) compileOnly(project(":compiler:plugin-api"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") } compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("asm-all") } compileOnly(intellijDep()) { includeJars("asm-all") }
runtime(projectDist(":kotlin-stdlib")) runtime(project(":kotlin-stdlib"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler")) testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testCompile(project(":compiler:backend")) testCompile(project(":compiler:backend"))
@@ -26,7 +26,7 @@ dependencies {
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(intellijCoreDep()) { includeJars("intellij-core") } testCompile(intellijCoreDep()) { includeJars("intellij-core") }
testCompile(intellijDep()) { includeJars("idea", "idea_rt", "openapi", "log4j", "jdom", "jps-model") } testCompile(intellijDep()) { includeJars("idea", "idea_rt", "openapi", "log4j", "jdom", "jps-model") }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
} }
sourceSets { sourceSets {
+1 -1
View File
@@ -5,7 +5,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":core:util.runtime")) compile(project(":core:util.runtime"))
compile(project(":compiler:backend")) compile(project(":compiler:backend"))
compile(project(":compiler:frontend.java")) compile(project(":compiler:frontend.java"))
+3 -3
View File
@@ -5,7 +5,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":core:util.runtime")) compile(project(":core:util.runtime"))
compile(project(":compiler:backend")) compile(project(":compiler:backend"))
compile(project(":compiler:frontend")) compile(project(":compiler:frontend"))
@@ -16,7 +16,7 @@ dependencies {
compileOnly(intellijCoreDep()) { includeJars("intellij-core") } compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("java-api", "java-impl", "asm-all") } compileOnly(intellijDep()) { includeJars("java-api", "java-impl", "asm-all") }
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(project(":compiler:util")) testCompile(project(":compiler:util"))
@@ -28,7 +28,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":idea:idea-gradle")) testRuntime(project(":idea:idea-gradle"))
testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false }
+3 -3
View File
@@ -5,7 +5,7 @@ plugins {
} }
dependencies { dependencies {
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":core:util.runtime")) compile(project(":core:util.runtime"))
compile(project(":compiler:backend")) compile(project(":compiler:backend"))
compile(project(":compiler:frontend")) compile(project(":compiler:frontend"))
@@ -14,7 +14,7 @@ dependencies {
compile(project(":idea:idea-core")) compile(project(":idea:idea-core"))
compileOnly(intellijDep()) { includeJars("openapi", "idea", "util", "extensions", "asm-all") } compileOnly(intellijDep()) { includeJars("openapi", "idea", "util", "extensions", "asm-all") }
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(project(":compiler:util")) testCompile(project(":compiler:util"))
@@ -26,7 +26,7 @@ dependencies {
testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-library-reader")) { isTransitive = false }
testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false } testRuntime(project(":kotlin-native:kotlin-native-utils")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":idea:idea-android")) testRuntime(project(":idea:idea-android"))
testRuntime(project(":idea:idea-gradle")) testRuntime(project(":idea:idea-gradle"))
testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false } testRuntime(project(":plugins:kapt3-idea")) { isTransitive = false }
@@ -21,11 +21,11 @@ dependencies {
testCompile(project(":compiler:daemon-common")) testCompile(project(":compiler:daemon-common"))
testCompile(projectRuntimeJar(":kotlin-daemon-client")) testCompile(projectRuntimeJar(":kotlin-daemon-client"))
testCompile(commonDep("junit:junit")) testCompile(commonDep("junit:junit"))
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit")) testCompile(project(":kotlin-test:kotlin-test-junit"))
testRuntimeCompilerJar(projectDist(":kotlin-compiler")) testRuntimeCompilerJar(project(":kotlin-compiler"))
testStdlibJar(projectDist(":kotlin-stdlib")) testStdlibJar(project(":kotlin-stdlib"))
testScriptRuntimeJar(projectDist(":kotlin-script-runtime")) testScriptRuntimeJar(project(":kotlin-script-runtime"))
} }
sourceSets { sourceSets {
+3 -3
View File
@@ -63,9 +63,9 @@ val sideJars by configurations.creating
dependencies { dependencies {
packedJars(protobufFull()) packedJars(protobufFull())
packedJars(project(":core:builtins", configuration = "builtins")) packedJars(project(":core:builtins", configuration = "builtins"))
sideJars(projectDist(":kotlin-script-runtime")) sideJars(project(":kotlin-script-runtime"))
sideJars(projectDist(":kotlin-stdlib")) sideJars(project(":kotlin-stdlib"))
sideJars(projectDist(":kotlin-reflect")) sideJars(project(":kotlin-reflect"))
sideJars(project(":kotlin-compiler-client-embeddable")) sideJars(project(":kotlin-compiler-client-embeddable"))
sideJars(commonDep("io.javaslang", "javaslang")) sideJars(commonDep("io.javaslang", "javaslang"))
sideJars(commonDep("javax.inject")) sideJars(commonDep("javax.inject"))
+3 -3
View File
@@ -22,7 +22,7 @@ dependencies {
} }
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":core:descriptors")) { isTransitive = false } compile(project(":core:descriptors")) { isTransitive = false }
compile(project(":compiler:psi")) { isTransitive = false } compile(project(":compiler:psi")) { isTransitive = false }
compile(project(":core:descriptors.jvm")) { isTransitive = false } compile(project(":core:descriptors.jvm")) { isTransitive = false }
@@ -59,7 +59,7 @@ dependencies {
compileOnly(intellijUltimatePluginDep("JavaScriptDebugger")) compileOnly(intellijUltimatePluginDep("JavaScriptDebugger"))
} }
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(project(":plugins:lint")) { isTransitive = false } testCompile(project(":plugins:lint")) { isTransitive = false }
testCompile(project(":idea:idea-jvm")) { isTransitive = false } testCompile(project(":idea:idea-jvm")) { isTransitive = false }
@@ -78,7 +78,7 @@ dependencies {
} }
testCompile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false } testCompile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":kotlin-script-runtime")) testRuntime(project(":kotlin-script-runtime"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler")) testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testRuntime(project(":plugins:android-extensions-ide")) { isTransitive = false } testRuntime(project(":plugins:android-extensions-ide")) { isTransitive = false }
+3 -3
View File
@@ -22,7 +22,7 @@ dependencies {
} }
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":core:descriptors")) { isTransitive = false } compile(project(":core:descriptors")) { isTransitive = false }
compile(project(":compiler:psi")) { isTransitive = false } compile(project(":compiler:psi")) { isTransitive = false }
compile(project(":core:descriptors.jvm")) { isTransitive = false } compile(project(":core:descriptors.jvm")) { isTransitive = false }
@@ -59,7 +59,7 @@ dependencies {
compileOnly(intellijUltimatePluginDep("JavaScriptDebugger")) compileOnly(intellijUltimatePluginDep("JavaScriptDebugger"))
} }
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(project(":plugins:lint")) { isTransitive = false } testCompile(project(":plugins:lint")) { isTransitive = false }
testCompile(project(":idea:idea-jvm")) { isTransitive = false } testCompile(project(":idea:idea-jvm")) { isTransitive = false }
@@ -78,7 +78,7 @@ dependencies {
} }
testCompile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false } testCompile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":kotlin-script-runtime")) testRuntime(project(":kotlin-script-runtime"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler")) testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testRuntime(project(":plugins:android-extensions-ide")) { isTransitive = false } testRuntime(project(":plugins:android-extensions-ide")) { isTransitive = false }
+3 -3
View File
@@ -24,7 +24,7 @@ dependencies {
} }
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":core:descriptors")) { isTransitive = false } compile(project(":core:descriptors")) { isTransitive = false }
compile(project(":compiler:psi")) { isTransitive = false } compile(project(":compiler:psi")) { isTransitive = false }
compile(project(":core:descriptors.jvm")) { isTransitive = false } compile(project(":core:descriptors.jvm")) { isTransitive = false }
@@ -61,7 +61,7 @@ dependencies {
compileOnly(intellijUltimatePluginDep("JavaScriptDebugger")) compileOnly(intellijUltimatePluginDep("JavaScriptDebugger"))
} }
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(project(":plugins:lint")) { isTransitive = false } testCompile(project(":plugins:lint")) { isTransitive = false }
testCompile(project(":idea:idea-jvm")) { isTransitive = false } testCompile(project(":idea:idea-jvm")) { isTransitive = false }
@@ -80,7 +80,7 @@ dependencies {
} }
testCompile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false } testCompile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":kotlin-script-runtime")) testRuntime(project(":kotlin-script-runtime"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler")) testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testRuntime(project(":plugins:android-extensions-ide")) { isTransitive = false } testRuntime(project(":plugins:android-extensions-ide")) { isTransitive = false }
+3 -3
View File
@@ -24,7 +24,7 @@ dependencies {
} }
compileOnly(project(":kotlin-reflect-api")) compileOnly(project(":kotlin-reflect-api"))
compile(projectDist(":kotlin-stdlib")) compile(project(":kotlin-stdlib"))
compile(project(":core:descriptors")) { isTransitive = false } compile(project(":core:descriptors")) { isTransitive = false }
compile(project(":compiler:psi")) { isTransitive = false } compile(project(":compiler:psi")) { isTransitive = false }
compile(project(":core:descriptors.jvm")) { isTransitive = false } compile(project(":core:descriptors.jvm")) { isTransitive = false }
@@ -61,7 +61,7 @@ dependencies {
compileOnly(intellijUltimatePluginDep("JavaScriptDebugger")) compileOnly(intellijUltimatePluginDep("JavaScriptDebugger"))
} }
testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) testCompile(project(":kotlin-test:kotlin-test-jvm"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false } testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(project(":plugins:lint")) { isTransitive = false } testCompile(project(":plugins:lint")) { isTransitive = false }
testCompile(project(":idea:idea-jvm")) { isTransitive = false } testCompile(project(":idea:idea-jvm")) { isTransitive = false }
@@ -80,7 +80,7 @@ dependencies {
} }
testCompile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false } testCompile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
testRuntime(projectDist(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":kotlin-script-runtime")) testRuntime(project(":kotlin-script-runtime"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler")) testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testRuntime(project(":plugins:android-extensions-ide")) { isTransitive = false } testRuntime(project(":plugins:android-extensions-ide")) { isTransitive = false }