aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--poi-scratchpad/build.gradle4
1 files changed, 4 insertions, 0 deletions
diff --git a/poi-scratchpad/build.gradle b/poi-scratchpad/build.gradle
index 803c8c6c49..8c2549643b 100644
--- a/poi-scratchpad/build.gradle
+++ b/poi-scratchpad/build.gradle
@@ -148,6 +148,10 @@ javadoc {
}
}
+// without this dependency, parallel building sometimes fails because the javadoc
+// task tries to access a jar-file which is not yet fully built
+javadoc.mustRunAfter ':poi-ooxml:jar'
+
javadocJar {
metaInf {
from("$projectDir/../legal/LICENSE")