From 0f245ef3c6c216b9eb8663ec3ced251b8595b150 Mon Sep 17 00:00:00 2001 From: "Alexander.Likhachev" Date: Fri, 20 Oct 2023 05:24:27 +0200 Subject: [PATCH] [Gradle] Enable the IC backup optimizations by default ^KT-62758 In Progress --- .../org/jetbrains/kotlin/gradle/plugin/PropertiesProvider.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/plugin/PropertiesProvider.kt b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/plugin/PropertiesProvider.kt index 24bf4637f50..e880900d331 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/plugin/PropertiesProvider.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/plugin/PropertiesProvider.kt @@ -456,13 +456,13 @@ internal class PropertiesProvider private constructor(private val project: Proje get() = booleanProperty("kotlin.daemon.useFallbackStrategy") ?: true val preciseCompilationResultsBackup: Boolean - get() = booleanProperty(KOTLIN_COMPILER_USE_PRECISE_COMPILATION_RESULTS_BACKUP) ?: false + get() = booleanProperty(KOTLIN_COMPILER_USE_PRECISE_COMPILATION_RESULTS_BACKUP) ?: true /** * This property should be enabled together with [preciseCompilationResultsBackup] */ val keepIncrementalCompilationCachesInMemory: Boolean - get() = booleanProperty(KOTLIN_COMPILER_KEEP_INCREMENTAL_COMPILATION_CACHES_IN_MEMORY) ?: false + get() = booleanProperty(KOTLIN_COMPILER_KEEP_INCREMENTAL_COMPILATION_CACHES_IN_MEMORY) ?: true val createDefaultMultiplatformPublications: Boolean get() = booleanProperty(KOTLIN_CREATE_DEFAULT_MULTIPLATFORM_PUBLICATIONS) ?: true