diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2021-08-29 20:14:19 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2021-08-29 20:14:19 +0000 |
commit | 519c6ef77fc4d1092a5786494511c9d1e4994ef3 (patch) | |
tree | e52b602994527aa4cb5de4d79723f6a86c051f08 /poi-integration | |
parent | 1ef368ab02973bf23fc4e57c6b1b589ca5eaf3a3 (diff) | |
download | poi-519c6ef77fc4d1092a5786494511c9d1e4994ef3.tar.gz poi-519c6ef77fc4d1092a5786494511c9d1e4994ef3.zip |
exclude HeapDump class for ibm build
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892707 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-integration')
-rw-r--r-- | poi-integration/build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/poi-integration/build.gradle b/poi-integration/build.gradle index 70d6664e74..97a16100f0 100644 --- a/poi-integration/build.gradle +++ b/poi-integration/build.gradle @@ -32,7 +32,9 @@ sourceSets { output.dir(TEST9_OUT, builtBy: 'cacheTest9') } if (IBMVM) { - exclude '**/HeapDump**' + java { + exclude '**/HeapDump**' + } } } } |