diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2021-06-23 20:39:46 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2021-06-23 20:39:46 +0000 |
commit | 2b1c3a6d2cdc92a4d01b062c163861fc695c4e4d (patch) | |
tree | 52b624eef550815c8174c85c9cd945624b86fac5 /poi-ooxml-full | |
parent | 678446554cb07d260baac49f3d0474fe219960f4 (diff) | |
download | poi-2b1c3a6d2cdc92a4d01b062c163861fc695c4e4d.tar.gz poi-2b1c3a6d2cdc92a4d01b062c163861fc695c4e4d.zip |
fix incremental build of poi-ooxml-full::generate_beans
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891002 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml-full')
-rw-r--r-- | poi-ooxml-full/build.gradle | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/poi-ooxml-full/build.gradle b/poi-ooxml-full/build.gradle index f922a706f1..c723b0e8e9 100644 --- a/poi-ooxml-full/build.gradle +++ b/poi-ooxml-full/build.gradle @@ -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( |