Skip to content

Commit fa9fcb8

Browse files
authored
Fix implicit dependencies for docsJar (#61)
1 parent b92708b commit fa9fcb8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,10 @@ allprojects {
6262
)
6363
}
6464
}
65+
66+
val projects = listOf("common", "laws", "types", "kotlin-plugin", "kotlin-gradle-plugin", "java-plugin", "java-gradle-plugin")
67+
projects.forEach { thing ->
68+
projects.forEach { dep ->
69+
tasks.getByPath(":arrow-analysis-$thing:docsJar").dependsOn(":arrow-analysis-$dep:dokkaHtml")
70+
}
71+
}

0 commit comments

Comments
 (0)