From bbbd7a0682e03a33f00d8a79a632daf67cde59ad Mon Sep 17 00:00:00 2001 From: Ludy87 Date: Sat, 12 Jul 2025 18:50:17 +0200 Subject: [PATCH] Update settings.gradle --- settings.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/settings.gradle b/settings.gradle index 319ea8251..2d7033935 100644 --- a/settings.gradle +++ b/settings.gradle @@ -4,4 +4,12 @@ plugins { } rootProject.name = 'Stirling PDF' +// Define which subprojects exist. +// The first entry corresponds to the 'stirling-pdf' directory but is internally aliased as ':stirling-pdf': include 'stirling-pdf', 'common', 'proprietary' + +// To let Gradle know where the ':stirling-pdf' module actually resides and to avoid case conflicts, +// we explicitly map the alias to the folder: +project(':stirling-pdf').projectDir = file('core') +project(':common' ).projectDir = file('common') +project(':proprietary' ).projectDir = file('proprietary')