Skip to content

Commit

Permalink
Fix implicit dependencies for docsJar (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
serras committed May 1, 2023
1 parent b92708b commit fa9fcb8
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 @@ -62,3 +62,10 @@ allprojects {
)
}
}

val projects = listOf("common", "laws", "types", "kotlin-plugin", "kotlin-gradle-plugin", "java-plugin", "java-gradle-plugin")
projects.forEach { thing ->
projects.forEach { dep ->
tasks.getByPath(":arrow-analysis-$thing:docsJar").dependsOn(":arrow-analysis-$dep:dokkaHtml")
}
}

0 comments on commit fa9fcb8

Please sign in to comment.