You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2021/06/23 20:39:47 UTC

svn commit: r1891002 - /poi/trunk/poi-ooxml-full/build.gradle

Author: kiwiwings
Date: Wed Jun 23 20:39:46 2021
New Revision: 1891002

URL: http://svn.apache.org/viewvc?rev=1891002&view=rev
Log:
fix incremental build of poi-ooxml-full::generate_beans

Modified:
    poi/trunk/poi-ooxml-full/build.gradle

Modified: poi/trunk/poi-ooxml-full/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml-full/build.gradle?rev=1891002&r1=1891001&r2=1891002&view=diff
==============================================================================
--- poi/trunk/poi-ooxml-full/build.gradle (original)
+++ poi/trunk/poi-ooxml-full/build.gradle Wed Jun 23 20:39:46 2021
@@ -94,9 +94,8 @@ task copy_xsds(type: Copy) {
 }
 
 task generate_beans(dependsOn: copy_xsds) {
-    // incremental feature is not working ...
-    inputs.files fileTree(dir: 'build/xsds', include: '*.xsd')
-    outputs.file 'build/generated-resources/org/apache/poi/schemas/ooxml/system/ooxml/TypeSystemHolder.class'
+    inputs.dir 'build/xsds'
+    outputs.dir 'build/generated-resources'
 
     doLast {
         ant.uptodate(



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