Disable checkFormatAot task

This commit is contained in:
Marcus Hert Da Coregio
2024-09-12 15:45:35 -03:00
parent 56033d76f8
commit f4a350c572

View File

@@ -25,6 +25,10 @@ allprojects {
tasks.withType(JavaCompile) {
options.compilerArgs.add("-parameters")
}
tasks.matching { it.name == 'checkFormatAot' }.all { task ->
task.enabled = false
}
}
if (hasProperty('buildScan')) {