Add kibana x-pack packaging to gradle
Original commit: elastic/x-pack-elasticsearch@393a687d86
This commit is contained in:
parent
016feb6859
commit
fedf79b6cc
|
@ -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.'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue