2025-04-27 17:17:07 +02:00
|
|
|
plugins {
|
|
|
|
|
// Apply the foojay-resolver plugin to allow automatic download of JDKs
|
2025-05-20 11:58:23 +01:00
|
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
|
2025-04-27 17:17:07 +02:00
|
|
|
}
|
2025-06-11 17:21:37 +01:00
|
|
|
rootProject.name = 'Stirling PDF'
|
2025-05-27 13:01:52 +01:00
|
|
|
|
2025-06-09 12:51:41 +01:00
|
|
|
include 'stirling-pdf', 'common', 'proprietary'
|
2025-07-14 21:53:11 +02:00
|
|
|
|
|
|
|
|
project(':stirling-pdf').projectDir = file('app/core')
|
|
|
|
|
project(':common' ).projectDir = file('app/common')
|
|
|
|
|
project(':proprietary' ).projectDir = file('app/proprietary')
|