From 48a5aad4a8026847f5e347308f720fe57d3ace13 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Fri, 2 Feb 2018 11:55:47 -0600 Subject: [PATCH] Polish Formatting of build.gradle Issue: gh-4986 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 27efb6a325..77511993bd 100644 --- a/build.gradle +++ b/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) {