Update settings.gradle

This commit is contained in:
Ludy87 2025-07-12 18:50:17 +02:00
parent 489cefa791
commit bbbd7a0682
No known key found for this signature in database
GPG Key ID: 92696155E0220F94

View File

@ -4,4 +4,12 @@ plugins {
} }
rootProject.name = 'Stirling PDF' 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' 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')