From 543d6ad54b498081537d5c1ad5201fcf4606c784 Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Wed, 9 Aug 2023 05:44:01 +0000 Subject: 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 --- poi-integration/build.gradle | 3 --- 1 file changed, 3 deletions(-) (limited to 'poi-integration/build.gradle') 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 } -- cgit v1.2.3