mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
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:
parent
97c4c43fb7
commit
ec66d655b5
11 changed files with 44 additions and 15 deletions
|
@ -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}'
|
||||
}
|
||||
--------------------------------------------------
|
||||
|
||||
|
|
|
@ -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}'
|
||||
}
|
||||
--------------------------------------------------
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue