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 247c05a commit 987fa44Copy full SHA for 987fa44
build.gradle.kts
@@ -14,3 +14,10 @@ allprojects {
14
subprojects {
15
apply(plugin = "org.jetbrains.dokka")
16
}
17
+
18
+// Avoid race conditions between `dokkaJavadocCollector` and `dokkaJavadocJar` tasks
19
+tasks.named("dokkaJavadocCollector").configure {
20
+ subprojects.flatMap { it.tasks }
21
+ .filter { it.project.name != "openai-java" && it.name == "dokkaJavadocJar" }
22
+ .forEach { mustRunAfter(it) }
23
+}
0 commit comments