mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-27 14:49:23 +00:00
12 lines
408 B
Groovy
12 lines
408 B
Groovy
plugins {
|
|
// Apply the foojay-resolver plugin to allow automatic download of JDKs
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
|
|
}
|
|
rootProject.name = 'Stirling PDF'
|
|
|
|
include 'stirling-pdf', 'common', 'proprietary'
|
|
|
|
project(':stirling-pdf').projectDir = file('core')
|
|
project(':common' ).projectDir = file('common')
|
|
project(':proprietary' ).projectDir = file('proprietary')
|