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 dbe222b commit c9cf687Copy full SHA for c9cf687
sdk-common/build.gradle.kts
@@ -1,4 +1,5 @@
1
import org.jetbrains.dokka.gradle.AbstractDokkaTask
2
+import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
4
plugins {
5
`java-library`
@@ -83,6 +84,7 @@ val generateVersionClass =
83
84
85
tasks {
86
withType<JavaCompile>().configureEach { dependsOn(generateVersionClass) }
87
+ withType<KotlinCompile>().configureEach { dependsOn(generateVersionClass) }
88
withType<org.gradle.jvm.tasks.Jar>().configureEach { dependsOn(generateVersionClass) }
89
withType<AbstractDokkaTask>().configureEach { dependsOn(generateVersionClass) }
90
}
0 commit comments