Browse Source

Polish Formatting of build.gradle

Issue: gh-4986
Rob Winch 7 years ago
parent
commit
48a5aad4a8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      build.gradle

+ 2 - 2
build.gradle

@@ -18,10 +18,10 @@ ext.milestoneBuild = !(snapshotBuild || releaseBuild)
 
 dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') }
 
-// Disable JaCoCo when not explicitly requested to enable caching of test 
+// Disable JaCoCo when not explicitly requested to enable caching of test
 // See https://discuss.gradle.org/t/do-not-cache-if-condition-matched-jacoco-agent-configured-with-append-true-satisfied/23504
 gradle.taskGraph.whenReady { graph ->
-    def enabled = graph.allTasks.any { it instanceof JacocoReport }
+	def enabled = graph.allTasks.any { it instanceof JacocoReport }
 	subprojects { project ->
 		project.plugins.withType(JacocoPlugin) {
 		    project.tasks.withType(Test) {