We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66cf946 commit b9600d8Copy full SHA for b9600d8
gradle-plugin/build.gradle
@@ -1,3 +1,4 @@
1
+import com.google.devtools.ksp.gradle.KspAATask
2
import com.google.devtools.ksp.gradle.KspTaskJvm
3
import com.squareup.wire.gradle.WireTask
4
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
@@ -73,6 +74,7 @@ val KOTLIN_VERSION = "${libs.versions.kotlin.get()}"
73
74
75
tasks.withType(KotlinCompile).configureEach { dependsOn(pluginVersion) }
76
tasks.withType(KspTaskJvm).configureEach { dependsOn(pluginVersion) }
77
+tasks.withType(KspAATask).configureEach { dependsOn(pluginVersion) }
78
79
wire {
80
kotlin {}
0 commit comments