From 4d89aa97e99e082015aaf42a92cbba84c4256206 Mon Sep 17 00:00:00 2001 From: Nik Everett Date: Thu, 21 Jul 2016 10:02:37 -0400 Subject: [PATCH] Vagrant tests should use plugin zips Fixes failing packaging tests: https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+packaging-tests/1049/console --- qa/vagrant/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/vagrant/build.gradle b/qa/vagrant/build.gradle index 86523a734ad..303032299b2 100644 --- a/qa/vagrant/build.gradle +++ b/qa/vagrant/build.gradle @@ -101,7 +101,7 @@ dependencies { // Collect all the plugins for (Project subproj : project.rootProject.subprojects) { if (subproj.path.startsWith(':plugins:')) { - test project("${subproj.path}") + test project(path: "${subproj.path}", configuration: 'zip') } }