diff options
author | Dominik Stadler <centic@apache.org> | 2023-08-09 05:44:01 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2023-08-09 05:44:01 +0000 |
commit | 543d6ad54b498081537d5c1ad5201fcf4606c784 (patch) | |
tree | 729b0fb4429e4cbfb958425d1b5f8d22a10b9c5e /poi-integration/build.gradle | |
parent | e706f37170789876a930461924fbe84c34c5dfa8 (diff) | |
download | poi-543d6ad54b498081537d5c1ad5201fcf4606c784.tar.gz poi-543d6ad54b498081537d5c1ad5201fcf4606c784.zip |
Do not disable all files for poi-integration in build.gradle
It seems doing it this way can kick in even when using JDK 11+ due
to the Gradle toolchain.
Let's rather do a more specific exclusion in code to only exclude files
which actually cause JDK 8 to hang.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1911562 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-integration/build.gradle')
-rw-r--r-- | poi-integration/build.gradle | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/poi-integration/build.gradle b/poi-integration/build.gradle index 3e631a2ff9..bc2a70d058 100644 --- a/poi-integration/build.gradle +++ b/poi-integration/build.gradle @@ -139,9 +139,6 @@ artifacts { test { // exclude these from the normal test-run exclude '**/*FileHandler.class' - if (jdkVersion == 8) { - exclude '**/*.class' - } dependsOn { testJar } |