From ae04627152f9c3595500f143518b422d0fb920ea Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Fri, 10 Feb 2017 11:02:42 -0800 Subject: [PATCH] Remove references to logstash and kibana builds Original commit: elastic/x-pack-elasticsearch@da6c2c92ddbc77081ea6412e33b4f35aa8f8883f --- build.gradle | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/build.gradle b/build.gradle index 145e289418c..57db2f417ef 100644 --- a/build.gradle +++ b/build.gradle @@ -29,37 +29,6 @@ subprojects { } } - -task bundlePack(type: Zip) { - onlyIf { project('kibana').bundlePlugin.enabled } - onlyIf { project('logstash').bundlePlugin.enabled } - dependsOn 'elasticsearch:bundlePlugin' - dependsOn 'kibana:bundlePlugin' - dependsOn 'logstash:bundlePlugin' - from { zipTree(project('elasticsearch').bundlePlugin.outputs.files.singleFile) } - from { zipTree(project('kibana').bundlePlugin.outputs.files.singleFile) } - from { zipTree(project('logstash').bundlePlugin.outputs.files.singleFile) } - destinationDir file('build/distributions') - baseName = 'x-pack' - version = VersionProperties.elasticsearch -} - -task assemble(dependsOn: bundlePack) { - group = 'Build' - description = 'Assembles the outputs of this project.' -} - -task build(dependsOn: assemble) { - group = 'Build' - description = 'Assembles and tests this project.' -} - -task clean(type: Delete) { - group = 'Build' - description = 'Deletes the build directory' - delete 'build' -} - File checkstyleSuppressions = file('dev-tools/checkstyle_suppressions.xml') subprojects { tasks.withType(Checkstyle) {