Преглед изворни кода

Disable checkFormatAot task

Marcus Hert Da Coregio пре 11 месеци
родитељ
комит
f4a350c572
1 измењених фајлова са 4 додато и 0 уклоњено
  1. 4 0
      build.gradle

+ 4 - 0
build.gradle

@@ -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')) {