File tree Expand file tree Collapse file tree
gradle-plugin/src/main/kotlin/com/google/devtools/ksp/gradle Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ import org.gradle.api.tasks.PathSensitivity
3838import org.gradle.api.tasks.SkipWhenEmpty
3939import org.gradle.api.tasks.TaskProvider
4040import org.gradle.process.CommandLineArgumentProvider
41+ import org.gradle.process.ExecOperations
4142import org.gradle.work.Incremental
4243import org.gradle.work.InputChanges
4344import org.gradle.work.NormalizeLineEndings
@@ -170,7 +171,6 @@ class KotlinFactories {
170171 it.name == konanTargetName
171172 }
172173 }
173- kspTask.separateKmpCompilation.value(false )
174174 }
175175 }
176176 }
@@ -307,11 +307,13 @@ abstract class KspTaskNative @Inject internal constructor(
307307 compilation : KotlinCompilationInfo ,
308308 objectFactory : ObjectFactory ,
309309 providerFactory : ProviderFactory ,
310+ execOperations : ExecOperations
310311) : KotlinNativeCompile(
311312 compilation,
312313 objectFactory.newInstance(KotlinNativeCompilerOptionsDefault ::class.java),
313314 objectFactory,
314315 providerFactory,
316+ execOperations
315317 ),
316318 KspTask
317319
Original file line number Diff line number Diff line change 11# Copied from kotlinc
22org.gradle.jvmargs =-Duser.country=US -Dkotlin.daemon.jvm.options=-Xmx4096m -Dfile.encoding=UTF-8
33
4- kotlinBaseVersion =2.2.20-Beta2
4+ kotlinBaseVersion =2.2.10-RC
55agpBaseVersion =8.10.0-alpha03
66intellijVersion =241.19416.19
77junitVersion =4.13.1
You can’t perform that action at this time.
0 commit comments