From fedf79b6cc1433014968ab39f2dab6cf660af0bb Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Tue, 26 Apr 2016 14:18:45 -0700 Subject: [PATCH] Add kibana x-pack packaging to gradle Original commit: elastic/x-pack-elasticsearch@393a687d866bae547019805e2ac0981f4378c179 --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index b774e32e1bf..78a6222af03 100644 --- a/build.gradle +++ b/build.gradle @@ -13,17 +13,17 @@ subprojects { } } -task bundleXPack(type: Zip) { +task bundlePack(type: Zip) { dependsOn 'elasticsearch:x-pack:bundlePlugin' - dependsOn 'kibana:npmPackage' + dependsOn 'kibana:bundlePlugin' from { zipTree(project('elasticsearch:x-pack').bundlePlugin.outputs.files.singleFile) } - from { zipTree(project('kibana').npmPackage.outputs.files.singleFile) } + from { zipTree(project('kibana').bundlePlugin.outputs.files.singleFile) } destinationDir file('build/distributions') baseName = 'x-pack' version = VersionProperties.elasticsearch } -task assemble(dependsOn: bundleXPack) { +task assemble(dependsOn: bundlePack) { group = 'Build' description = 'Assembles the outputs of this project.' }