From 56cfaf8cb9f9d239ab9e4360f416c1c53dc7cee1 Mon Sep 17 00:00:00 2001 From: Luca Cavanna Date: Thu, 13 Jul 2017 09:44:53 +0200 Subject: [PATCH] Rename client artifacts (elastic/x-pack-elasticsearch#1985) Adapt to upstream rename of rest and sniffer artifacts Original commit: elastic/x-pack-elasticsearch@f43368b3fbe10f21a2903b7ee0ca6d3147ca2057 --- plugin/build.gradle | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/plugin/build.gradle b/plugin/build.gradle index 0bef62c417d..80f0d87aeee 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -27,13 +27,12 @@ dependencyLicenses { mapping from: /bc.*/, to: 'bouncycastle' mapping from: /owasp-java-html-sanitizer.*/, to: 'owasp-java-html-sanitizer' mapping from: /transport-netty.*/, to: 'elasticsearch' - mapping from: /rest.*/, to: 'elasticsearch' + mapping from: /elasticsearch-rest-client.*/, to: 'elasticsearch' mapping from: /http.*/, to: 'httpclient' // pulled in by rest client mapping from: /commons-.*/, to: 'commons' // pulled in by rest client - mapping from: /sniffer.*/, to: 'elasticsearch' - ignoreSha 'rest' + ignoreSha 'elasticsearch-rest-client' ignoreSha 'transport-netty4' - ignoreSha 'sniffer' + ignoreSha 'elasticsearch-rest-client-sniffer' } licenseHeaders { @@ -74,8 +73,8 @@ dependencies { testCompile 'com.google.code.findbugs:jsr305:3.0.1' // monitoring deps - compile "org.elasticsearch.client:rest:${version}" - compile "org.elasticsearch.client:sniffer:${version}" + compile "org.elasticsearch.client:elasticsearch-rest-client:${version}" + compile "org.elasticsearch.client:elasticsearch-rest-client-sniffer:${version}" // ml deps compile 'net.sf.supercsv:super-csv:2.4.0'