[Build] Fix configuration cache undeclared system property read issues

#KT-44611 In Progress
This commit is contained in:
Alexander Likhachev
2021-04-27 02:23:19 +03:00
parent f0a6d9f33f
commit cc183e96a4
4 changed files with 13 additions and 5 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ dependencies {
testRuntimeOnly(toolsJar())
testRuntime(intellijDep())
testRuntimeOnly(intellijPluginDep("java"))
if (System.getProperty("idea.active") != null) testRuntimeOnly(files("${rootProject.projectDir}/dist/kotlinc/lib/kotlin-reflect.jar"))
if (isIdeaActive) testRuntimeOnly(files("${rootProject.projectDir}/dist/kotlinc/lib/kotlin-reflect.jar"))
}
sourceSets {