diff --git a/idea/performanceTests/build.gradle.kts b/idea/performanceTests/build.gradle.kts index b0ab24084a3..731f3e53534 100644 --- a/idea/performanceTests/build.gradle.kts +++ b/idea/performanceTests/build.gradle.kts @@ -21,6 +21,7 @@ dependencies { testRuntimeOnly(project(":kotlin-reflect")) testRuntimeOnly(project(":idea:kotlin-gradle-tooling")) testRuntimeOnly(project(":idea:idea-gradle-tooling-api")) + testRuntimeOnly(project(":kotlin-gradle-statistics")) testImplementation(intellijPluginDep("gradle")) testImplementation(project(":compiler:backend")) @@ -29,6 +30,7 @@ dependencies { testImplementation(projectTests(":compiler:tests-common")) testImplementation(projectTests(":idea:idea-test-framework")) { isTransitive = false } testImplementation(projectTests(":idea")) + testImplementation(project(":idea:idea-gradle")) { isTransitive = false } testImplementation(commonDep("junit:junit")) Platform[192].orHigher { @@ -36,6 +38,11 @@ dependencies { testRuntimeOnly(intellijPluginDep("java")) } + Platform[193].orHigher { + testImplementation(intellijPluginDep("gradle-java")) + testRuntimeOnly(intellijPluginDep("gradle-java")) + } + testCompileOnly(intellijDep()) testCompileOnly(project(":nj2k")) testCompileOnly(project(":idea:idea-gradle-tooling-api"))