From b6c2cb109a3a975d0d97f5da241158fe712efa5f Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Mon, 26 Nov 2018 16:18:35 -0800 Subject: [PATCH] Build: Fix jdbc jar to include deps (#35602) This commit adds back bundling of all deps of the sql jdbc jar. This was lost in a refactoring of how the shadow plugin is handled for the entire elasticsearch project. --- x-pack/plugin/sql/jdbc/build.gradle | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/x-pack/plugin/sql/jdbc/build.gradle b/x-pack/plugin/sql/jdbc/build.gradle index 4268daf734719..1a4d2313022f7 100644 --- a/x-pack/plugin/sql/jdbc/build.gradle +++ b/x-pack/plugin/sql/jdbc/build.gradle @@ -36,13 +36,19 @@ dependencyLicenses { ignoreSha 'elasticsearch' } +test { + // don't use the shaded jar for tests + classpath += project.tasks.compileJava.outputs.files + classpath -= project.tasks.shadowJar.outputs.files +} + shadowJar { relocate 'com.fasterxml', 'org.elasticsearch.fasterxml' + // set the shaded configuration back to runtime instead of bundle because + // we need tests to use the non-shaded deps to allow editing/testing in intellij + configurations = [project.configurations.runtime] } -// We don't need normal jar, we use shadow jar instead -jar.enabled = false - // We need a no-depenencies jar though for qa testing so it doesn't conflict with cli configurations { nodeps @@ -55,7 +61,6 @@ task nodepsJar(type: Jar) { artifacts { nodeps nodepsJar - archives shadowJar } publishing {