Merge remote-tracking branch 'origin/V2' into mainClone

This commit is contained in:
Anthony Stirling
2025-08-10 17:48:44 +01:00
360 changed files with 167841 additions and 559 deletions
+10 -2
View File
@@ -212,9 +212,17 @@ subprojects {
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
dependsOn "spotlessApply"
if (!project.hasProperty("noSpotless")) {
dependsOn "spotlessApply"
}
}
gradle.taskGraph.whenReady { graph ->
if (project.hasProperty("noSpotless")) {
tasks.matching { it.name.startsWith("spotless") }.configureEach {
enabled = false
}
}
}
licenseReport {
projects = [project]
renderers = [new JsonReportRenderer()]