You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2022/01/01 21:11:40 UTC

svn commit: r1896604 - /poi/trunk/poi-scratchpad/build.gradle

Author: centic
Date: Sat Jan  1 21:11:40 2022
New Revision: 1896604

URL: http://svn.apache.org/viewvc?rev=1896604&view=rev
Log:
Add a dependency for :poi-scratchpad:javadoc to :poi-ooxml:jar to avoid strange build-failures with parallel building

Modified:
    poi/trunk/poi-scratchpad/build.gradle

Modified: poi/trunk/poi-scratchpad/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/poi-scratchpad/build.gradle?rev=1896604&r1=1896603&r2=1896604&view=diff
==============================================================================
--- poi/trunk/poi-scratchpad/build.gradle (original)
+++ poi/trunk/poi-scratchpad/build.gradle Sat Jan  1 21:11:40 2022
@@ -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")



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org