From e69ae451cfeb8cc6103569200498cfc693f7de34 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Mon, 17 Jun 2019 17:47:38 +0300 Subject: [PATCH] Build: Fix performanceTestCompileOnly configuration --- idea/build.gradle.kts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index 9eb90aacbf9..69f7c05a41f 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -32,7 +32,6 @@ sourceSets { "performanceTest" { java.srcDirs("performanceTests") } - } val performanceTestCompile by configurations @@ -41,7 +40,7 @@ performanceTestCompile.apply { } val performanceTestCompileOnly by configurations -performanceTestCompile.apply { +performanceTestCompileOnly.apply { extendsFrom(configurations["testCompileOnly"]) }