|
@@ -1,3 +1,5 @@
|
|
|
|
+import io.spring.javaformat.gradle.tasks.Format
|
|
|
|
+
|
|
plugins {
|
|
plugins {
|
|
id "checkstyle"
|
|
id "checkstyle"
|
|
id "io.spring.javaformat" version "0.0.42"
|
|
id "io.spring.javaformat" version "0.0.42"
|
|
@@ -49,6 +51,12 @@ allprojects {
|
|
tasks.matching { it.name == "checkstyleAotTest" }.all { task ->
|
|
tasks.matching { it.name == "checkstyleAotTest" }.all { task ->
|
|
task.enabled = false
|
|
task.enabled = false
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ tasks.withType(Format).tap {
|
|
|
|
+ configureEach {
|
|
|
|
+ it.enabled = !it.identityPath.toString().contains("saml2")
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
if (hasProperty('buildScan')) {
|
|
if (hasProperty('buildScan')) {
|