Skip to content

Commit 0bdf59e

Browse files
committed
Enable incremental processing by default
1 parent d75cf72 commit 0bdf59e

File tree

1 file changed

+1
-1
lines changed
  • gradle-plugin/src/main/kotlin/com/google/devtools/ksp/gradle

1 file changed

+1
-1
lines changed

gradle-plugin/src/main/kotlin/com/google/devtools/ksp/gradle/KspSubplugin.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class KspGradleSubplugin @Inject internal constructor(private val registry: Tool
108108
options += SubpluginOption("kotlinOutputDir", kotlinOutputDir.path)
109109
options += SubpluginOption("resourceOutputDir", resourceOutputDir.path)
110110
options += SubpluginOption("cachesDir", cachesDir.path)
111-
options += SubpluginOption("incremental", project.findProperty("ksp.incremental")?.toString() ?: "false")
111+
options += SubpluginOption("incremental", project.findProperty("ksp.incremental")?.toString() ?: "true")
112112
options += SubpluginOption("incrementalLog", project.findProperty("ksp.incremental.log")?.toString() ?: "false")
113113
options += SubpluginOption("projectBaseDir", project.project.projectDir.canonicalPath)
114114
options += SubpluginOption("kspOutputDir", kspOutputDir.path)

0 commit comments

Comments
 (0)