From 974db2a25cce3bbbe86ee5d2bb5689a09fce9ac4 Mon Sep 17 00:00:00 2001 From: Dario Ghunney Ware Date: Mon, 9 Jun 2025 15:50:19 +0100 Subject: [PATCH] fixed source exclusion --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 38e957958..caafc730e 100644 --- a/build.gradle +++ b/build.gradle @@ -51,7 +51,7 @@ sourceSets { exclude 'stirling/software/proprietary/security/**' } if (System.getenv('STIRLING_PDF_DESKTOP_UI') == 'false') { - exclude 'stirling/software/SPDF/UI/impl/**' + exclude '**/stirling/software/SPDF/UI/impl/**' } } } @@ -67,7 +67,7 @@ sourceSets { if (System.getenv('STIRLING_PDF_DESKTOP_UI') != 'false' || (project.hasProperty('STIRLING_PDF_DESKTOP_UI') && project.getProperty('STIRLING_PDF_DESKTOP_UI') != 'false')) { - exclude 'stirling/software/SPDF/UI/impl/**' + exclude '**/stirling/software/SPDF/UI/impl/**' } } }