Merge branch 'pr-4113' of git@github.com:Stirling-Tools/Stirling-PDF.git

into pr-4113
This commit is contained in:
Anthony Stirling 2025-08-07 11:01:04 +01:00
parent 2b7671dc63
commit c84adb289c
2 changed files with 4 additions and 2 deletions

View File

@ -53,7 +53,7 @@ jobs:
with:
gradle-version: 8.14
- name: Build with Gradle and spring security ${{ matrix.spring-security }}
run: ./gradlew clean build
run: ./gradlew clean build -PnoSpotless
env:
DISABLE_ADDITIONAL_FEATURES: ${{ matrix.spring-security }}
- name: Check Test Reports Exist

View File

@ -203,7 +203,9 @@ subprojects {
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
dependsOn "spotlessApply"
if (!project.hasProperty("noSpotless")) {
dependsOn "spotlessApply"
}
}
licenseReport {