Skip to content

Commit

Permalink
chore(internal): fix release (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Jan 25, 2025
1 parent fbc58f3 commit 122923d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,10 @@ allprojects {
subprojects {
apply(plugin = "org.jetbrains.dokka")
}

// Avoid race conditions between `dokkaJavadocCollector` and `dokkaJavadocJar` tasks
tasks.named("dokkaJavadocCollector").configure {
subprojects.flatMap { it.tasks }
.filter { it.project.name != "anthropic-java" && it.name == "dokkaJavadocJar" }
.forEach { mustRunAfter(it) }
}

0 comments on commit 122923d

Please sign in to comment.