Browse Source

Set impliesSubProjects flag for root RunTask task (#57615)

Fixes #57521
Rene Groeschke 5 years ago
parent
commit
fda9c3f2bb
1 changed files with 2 additions and 0 deletions
  1. 2 0
      gradle/run.gradle

+ 2 - 0
gradle/run.gradle

@@ -44,4 +44,6 @@ tasks.register("run", RunTask) {
   useCluster testClusters.runTask;
   useCluster testClusters.runTask;
   description = 'Runs elasticsearch in the foreground'
   description = 'Runs elasticsearch in the foreground'
   group = 'Verification'
   group = 'Verification'
+
+  impliesSubProjects = true
 }
 }