Rename client artifacts (#25693)

It was brought up that our current client artifacts have generic names like 'rest' that may cause conflicts with other artifacts.

This commit renames:

- rest -> elasticsearch-rest-client
- sniffer -> elasticsearch-rest-client-sniffer
- rest-high-level -> elasticsearch-rest-high-level-client

A couple of small changes are also preparing the high level client for its first release.

Closes #20248
This commit is contained in:
Luca Cavanna 2017-07-13 09:44:25 +02:00 committed by GitHub
parent 97c4c43fb7
commit ec66d655b5
11 changed files with 44 additions and 15 deletions

View file

@ -26,7 +26,7 @@ Add the following to your `pom.xml` file:
--------------------------------------------------
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>sniffer</artifactId>
<artifactId>elasticsearch-rest-client-sniffer</artifactId>
<version>{version}</version>
</dependency>
--------------------------------------------------
@ -39,7 +39,7 @@ Add the following to your `build.gradle` file:
["source","groovy",subs="attributes"]
--------------------------------------------------
dependencies {
compile 'org.elasticsearch.client:sniffer:{version}'
compile 'org.elasticsearch.client:elasticsearch-rest-client-sniffer:{version}'
}
--------------------------------------------------

View file

@ -27,7 +27,7 @@ Add the following to your `pom.xml` file:
--------------------------------------------------
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>rest</artifactId>
<artifactId>elasticsearch-rest-client</artifactId>
<version>{version}</version>
</dependency>
--------------------------------------------------
@ -41,7 +41,7 @@ Add the following to your `build.gradle` file:
["source","groovy",subs="attributes"]
--------------------------------------------------
dependencies {
compile 'org.elasticsearch.client:rest:{version}'
compile 'org.elasticsearch.client:elasticsearch-rest-client:{version}'
}
--------------------------------------------------