File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
gradle-plugin/src/main/kotlin/com/google/devtools/ksp/gradle Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import javax.inject.Inject
2828
2929abstract class KspExtension @Inject constructor(project : Project ) {
3030 /* *
31- * Enables or disables KSP 2, defaults to the `ksp.useKsp2 ` gradle property or `false ` if that's not set.
31+ * Enables or disables KSP 2, defaults to the `ksp.useKSP2 ` gradle property or `true ` if that's not set.
3232 *
3333 * This API is temporary and will be removed once KSP1 is removed.
3434 */
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ class KspGradleSubplugin @Inject internal constructor(private val registry: Tool
214214 target.providers
215215 .gradleProperty(" ksp.useKSP2" )
216216 .map { it.toBoolean() }
217- .orElse(false )
217+ .orElse(true )
218218 )
219219 kspConfigurations = KspConfigurations (target)
220220 registry.register(KspModelBuilder ())
You can’t perform that action at this time.
0 commit comments