From de717a8ee1e55b46678c8bf6cda80868d3fe35d5 Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Mon, 26 Aug 2019 16:34:32 -0700 Subject: [PATCH] Don't use assemble task on root project (#45999) The root project uses the base plugin to get a clean task, but does not actually need the assemble task. This commit changes the root project to use the lifecycle-base plugin, which while still creating the assemble task, won't add any dependencies to it. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 1719f70367bbc..a826ecb4475e2 100644 --- a/build.gradle +++ b/build.gradle @@ -33,7 +33,7 @@ import static org.elasticsearch.gradle.tool.Boilerplate.maybeConfigure plugins { id 'com.gradle.build-scan' version '2.4' - id 'base' + id 'lifecycle-base' id 'elasticsearch.global-build-info' }