diff options
author | Dominik Stadler <centic@apache.org> | 2022-01-01 21:11:40 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2022-01-01 21:11:40 +0000 |
commit | 1e58d90228cb2dcddbd998ed642e64d1dca0fa4d (patch) | |
tree | a5ff3e4eb00eb57f88d33c7a680d7d0aa5bb7a2a /poi-scratchpad | |
parent | 4fd458cae1b2c55ae71bd3bd7ada7880332555f1 (diff) | |
download | poi-1e58d90228cb2dcddbd998ed642e64d1dca0fa4d.tar.gz poi-1e58d90228cb2dcddbd998ed642e64d1dca0fa4d.zip |
Add a dependency for :poi-scratchpad:javadoc to :poi-ooxml:jar to avoid strange build-failures with parallel building
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1896604 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-scratchpad')
-rw-r--r-- | poi-scratchpad/build.gradle | 4 |
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") |