Add kibana x-pack packaging to gradle

Original commit: elastic/x-pack-elasticsearch@393a687d86
This commit is contained in:
Ryan Ernst 2016-04-26 14:18:45 -07:00
parent 016feb6859
commit fedf79b6cc
1 changed files with 4 additions and 4 deletions

View File

@ -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.'
}