Parcelize: Add missing dependencies to Parcelize components in tests

This commit is contained in:
Yan Zhulanow
2020-07-09 18:18:30 +09:00
parent 4bd8e2f78c
commit 0ce9003ef7
15 changed files with 17 additions and 0 deletions
+1
View File
@@ -37,6 +37,7 @@ fun Task.dependsOnKotlinPluginInstall() {
":kotlin-noarg:install", ":kotlin-noarg:install",
":kotlin-sam-with-receiver:install", ":kotlin-sam-with-receiver:install",
":kotlin-android-extensions:install", ":kotlin-android-extensions:install",
":kotlin-parcelize-compiler:install",
":kotlin-build-common:install", ":kotlin-build-common:install",
":kotlin-compiler-embeddable:install", ":kotlin-compiler-embeddable:install",
":native:kotlin-native-utils:install", ":native:kotlin-native-utils:install",
+2
View File
@@ -145,6 +145,8 @@ dependencies {
testRuntime(project(":noarg-ide-plugin")) { isTransitive = false } testRuntime(project(":noarg-ide-plugin")) { isTransitive = false }
testRuntime(project(":kotlin-noarg-compiler-plugin")) testRuntime(project(":kotlin-noarg-compiler-plugin"))
testRuntime(project(":plugins:annotation-based-compiler-plugins-ide-support")) { isTransitive = false } testRuntime(project(":plugins:annotation-based-compiler-plugins-ide-support")) { isTransitive = false }
testRuntime(project(":plugins:parcelize:parcelize-compiler"))
testRuntime(project(":plugins:parcelize:parcelize-ide")) { isTransitive = false }
testRuntime(project(":kotlin-scripting-idea")) { isTransitive = false } testRuntime(project(":kotlin-scripting-idea")) { isTransitive = false }
testRuntime(project(":kotlin-scripting-compiler-impl")) testRuntime(project(":kotlin-scripting-compiler-impl"))
testRuntime(project(":sam-with-receiver-ide-plugin")) { isTransitive = false } testRuntime(project(":sam-with-receiver-ide-plugin")) { isTransitive = false }
+1
View File
@@ -49,6 +49,7 @@ dependencies {
testRuntime(project(":allopen-ide-plugin")) testRuntime(project(":allopen-ide-plugin"))
testRuntime(project(":kotlin-scripting-idea")) testRuntime(project(":kotlin-scripting-idea"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) testRuntime(project(":kotlinx-serialization-ide-plugin"))
testRuntime(project(":plugins:parcelize:parcelize-ide"))
testRuntime(intellijPluginDep("android")) testRuntime(intellijPluginDep("android"))
+1
View File
@@ -51,6 +51,7 @@ dependencies {
testRuntime(project(":allopen-ide-plugin")) testRuntime(project(":allopen-ide-plugin"))
testRuntime(project(":noarg-ide-plugin")) testRuntime(project(":noarg-ide-plugin"))
testRuntime(project(":kotlin-scripting-idea")) testRuntime(project(":kotlin-scripting-idea"))
testRuntime(project(":plugins:parcelize:parcelize-ide"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) testRuntime(project(":kotlinx-serialization-ide-plugin"))
// TODO: the order of the plugins matters here, consider avoiding order-dependency // TODO: the order of the plugins matters here, consider avoiding order-dependency
Platform[192].orHigher { Platform[192].orHigher {
+1
View File
@@ -64,6 +64,7 @@ dependencies {
testRuntime(project(":noarg-ide-plugin")) testRuntime(project(":noarg-ide-plugin"))
testRuntime(project(":kotlin-scripting-idea")) testRuntime(project(":kotlin-scripting-idea"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) testRuntime(project(":kotlinx-serialization-ide-plugin"))
testRuntime(project(":plugins:parcelize:parcelize-ide"))
testRuntime(project(":kotlin-gradle-statistics")) testRuntime(project(":kotlin-gradle-statistics"))
// TODO: the order of the plugins matters here, consider avoiding order-dependency // TODO: the order of the plugins matters here, consider avoiding order-dependency
testRuntime(intellijPluginDep("junit")) testRuntime(intellijPluginDep("junit"))
+1
View File
@@ -64,6 +64,7 @@ dependencies {
testRuntime(project(":sam-with-receiver-ide-plugin")) testRuntime(project(":sam-with-receiver-ide-plugin"))
testRuntime(project(":allopen-ide-plugin")) testRuntime(project(":allopen-ide-plugin"))
testRuntime(project(":noarg-ide-plugin")) testRuntime(project(":noarg-ide-plugin"))
testRuntime(project(":plugins:parcelize:parcelize-ide"))
testRuntime(project(":kotlin-scripting-idea")) testRuntime(project(":kotlin-scripting-idea"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) testRuntime(project(":kotlinx-serialization-ide-plugin"))
@@ -38,6 +38,7 @@ dependencies {
testRuntimeOnly(project(":plugins:annotation-based-compiler-plugins-ide-support")) testRuntimeOnly(project(":plugins:annotation-based-compiler-plugins-ide-support"))
testRuntimeOnly(project(":kotlin-gradle-statistics")) testRuntimeOnly(project(":kotlin-gradle-statistics"))
testRuntimeOnly(project(":kotlin-scripting-idea")) testRuntimeOnly(project(":kotlin-scripting-idea"))
testRuntimeOnly(project(":plugins:parcelize:parcelize-ide"))
testRuntimeOnly(intellijRuntimeAnnotations()) testRuntimeOnly(intellijRuntimeAnnotations())
@@ -37,6 +37,7 @@ dependencies {
testRuntime(project(":noarg-ide-plugin")) testRuntime(project(":noarg-ide-plugin"))
testRuntime(project(":kotlin-scripting-idea")) testRuntime(project(":kotlin-scripting-idea"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) testRuntime(project(":kotlinx-serialization-ide-plugin"))
testRuntime(project(":plugins:parcelize:parcelize-ide"))
testRuntime(intellijDep()) testRuntime(intellijDep())
testRuntime(intellijRuntimeAnnotations()) testRuntime(intellijRuntimeAnnotations())
+1
View File
@@ -18,6 +18,7 @@ dependencies {
testRuntimeOnly(project(":allopen-ide-plugin")) testRuntimeOnly(project(":allopen-ide-plugin"))
testRuntimeOnly(project(":kotlin-scripting-idea")) testRuntimeOnly(project(":kotlin-scripting-idea"))
testRuntimeOnly(project(":kotlinx-serialization-ide-plugin")) testRuntimeOnly(project(":kotlinx-serialization-ide-plugin"))
testRuntimeOnly(project(":plugins:parcelize:parcelize-ide"))
testRuntimeOnly(project(":nj2k:nj2k-services")) testRuntimeOnly(project(":nj2k:nj2k-services"))
testRuntimeOnly(project(":kotlin-reflect")) testRuntimeOnly(project(":kotlin-reflect"))
testRuntimeOnly(project(":idea:kotlin-gradle-tooling")) testRuntimeOnly(project(":idea:kotlin-gradle-tooling"))
+2
View File
@@ -26,6 +26,8 @@ dependencies {
testRuntime(project(":sam-with-receiver-ide-plugin")) { isTransitive = false } testRuntime(project(":sam-with-receiver-ide-plugin")) { isTransitive = false }
testRuntime(project(":kotlinx-serialization-compiler-plugin")) testRuntime(project(":kotlinx-serialization-compiler-plugin"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) { isTransitive = false } testRuntime(project(":kotlinx-serialization-ide-plugin")) { isTransitive = false }
testRuntime(project(":plugins:parcelize:parcelize-compiler"))
testRuntime(project(":plugins:parcelize:parcelize-ide")) { isTransitive = false }
testRuntime(project(":idea:idea-android")) { isTransitive = false } testRuntime(project(":idea:idea-android")) { isTransitive = false }
+1
View File
@@ -44,6 +44,7 @@ dependencies {
testRuntime(project(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":kotlin-scripting-idea")) testRuntime(project(":kotlin-scripting-idea"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) testRuntime(project(":kotlinx-serialization-ide-plugin"))
testRuntime(project(":plugins:parcelize:parcelize-ide"))
testRuntime(intellijPluginDep("properties")) testRuntime(intellijPluginDep("properties"))
testRuntime(intellijPluginDep("gradle")) testRuntime(intellijPluginDep("gradle"))
testRuntime(intellijPluginDep("Groovy")) testRuntime(intellijPluginDep("Groovy"))
@@ -34,6 +34,7 @@ dependencies {
testCompile(kotlinStdlib("jdk8")) testCompile(kotlinStdlib("jdk8"))
testCompile(project(":kotlin-reflect")) testCompile(project(":kotlin-reflect"))
testCompile(project(":kotlin-android-extensions")) testCompile(project(":kotlin-android-extensions"))
testCompile(project(":kotlin-parcelize-compiler"))
testCompile(commonDep("org.jetbrains.intellij.deps", "trove4j")) testCompile(commonDep("org.jetbrains.intellij.deps", "trove4j"))
testCompile(gradleApi()) testCompile(gradleApi())
+1
View File
@@ -38,6 +38,7 @@ dependencies {
testRuntime(project(":noarg-ide-plugin")) testRuntime(project(":noarg-ide-plugin"))
testRuntime(project(":kotlin-reflect")) testRuntime(project(":kotlin-reflect"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) testRuntime(project(":kotlinx-serialization-ide-plugin"))
testRuntime(project(":plugins:parcelize:parcelize-ide"))
} }
sourceSets { sourceSets {
@@ -47,6 +47,7 @@ dependencies {
testRuntime(project(":kotlin-scripting-idea")) testRuntime(project(":kotlin-scripting-idea"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) testRuntime(project(":kotlinx-serialization-ide-plugin"))
testRuntime(project(":plugins:lint")) testRuntime(project(":plugins:lint"))
testRuntime(project(":plugins:parcelize:parcelize-ide"))
testRuntime(intellijPluginDep("junit")) testRuntime(intellijPluginDep("junit"))
testRuntime(intellijPluginDep("IntelliLang")) testRuntime(intellijPluginDep("IntelliLang"))
testRuntime(intellijPluginDep("properties")) testRuntime(intellijPluginDep("properties"))
+1
View File
@@ -51,6 +51,7 @@ dependencies {
testRuntime(project(":plugins:android-extensions-ide")) testRuntime(project(":plugins:android-extensions-ide"))
testRuntime(project(":plugins:kapt3-idea")) testRuntime(project(":plugins:kapt3-idea"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) testRuntime(project(":kotlinx-serialization-ide-plugin"))
testRuntime(project(":plugins:parcelize:parcelize-ide"))
testRuntime(intellijDep()) testRuntime(intellijDep())
testRuntime(intellijPluginDep("junit")) testRuntime(intellijPluginDep("junit"))
testRuntime(intellijPluginDep("gradle")) testRuntime(intellijPluginDep("gradle"))