From d50d700f148b9d31a4c590ef751a85cc6e09250d 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 31562dbf6ef..83845b60647 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' }