diff --git a/README.md b/README.md index 936581a..aff8470 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # Elasticsearch Client Java Sample project -https://discuss.elastic.co has many questions about the Elasticsearch Java Client. +https://discuss.elastic.co has many questions about the Elasticsearch [Java API Client](https://www.elastic.co/docs/reference/elasticsearch/clients/java). To address those questions, I often attempt to reproduce the issues. @@ -11,7 +11,8 @@ I believe it could be beneficial for many, so I've made the code available here. You're welcome to contribute your own examples if you'd like. -This repository is tested against Elasticsearch 9.1.2. +This repository is tested against Elasticsearch Server 9.1.2 using +[Elasticsearch Java API Client](https://www.elastic.co/docs/reference/elasticsearch/clients/java) 9.1.2. We automatically start a Docker image using the [Elasticsearch module for TestContainers](https://www.testcontainers.org/modules/elasticsearch/). diff --git a/pom.xml b/pom.xml index 1bb5c4b..9e1b5b6 100644 --- a/pom.xml +++ b/pom.xml @@ -11,6 +11,7 @@ 9.1.2 + 9.1.2 2.19.2 2.25.1 2.0.17 @@ -72,7 +73,7 @@ co.elastic.clients elasticsearch-java - ${elasticsearch.version} + ${elasticsearch-client.version} test diff --git a/src/main/documentation/README.md b/src/main/documentation/README.md index 204a769..a721a9e 100644 --- a/src/main/documentation/README.md +++ b/src/main/documentation/README.md @@ -2,7 +2,7 @@ # Elasticsearch Client Java Sample project -https://discuss.elastic.co has many questions about the Elasticsearch Java Client. +https://discuss.elastic.co has many questions about the Elasticsearch [Java API Client](https://www.elastic.co/docs/reference/elasticsearch/clients/java). To address those questions, I often attempt to reproduce the issues. @@ -11,7 +11,8 @@ I believe it could be beneficial for many, so I've made the code available here. You're welcome to contribute your own examples if you'd like. -This repository is tested against Elasticsearch ${elasticsearch.version}. +This repository is tested against Elasticsearch Server ${elasticsearch.version} using +[Elasticsearch Java API Client](https://www.elastic.co/docs/reference/elasticsearch/clients/java) ${elasticsearch-client.version}. We automatically start a Docker image using the [Elasticsearch module for TestContainers](https://www.testcontainers.org/modules/elasticsearch/).