Skip to content

Commit

Permalink
Update README.md and fix the opensearch-rest-client dependencies (#311)
Browse files Browse the repository at this point in the history
Signed-off-by: Andriy Redko <[email protected]>
  • Loading branch information
reta authored Jul 19, 2024
1 parent e300139 commit 6b74fcf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ To switch over to `OpenSearchClient`, the `opensearch-rest-high-level-client` de
<dependency>
<groupId>org.opensearch.client</groupId>
<artifactId>opensearch-java</artifactId>
<version>2.10.4</version>
<version>2.11.1</version>
</dependency>
```

Expand All @@ -113,7 +113,7 @@ To use Spring Boot 3.x auto configuration support:
<dependency>
<groupId>org.opensearch.client</groupId>
<artifactId>opensearch-java</artifactId>
<version>2.10.4</version>
<version>2.11.1</version>
</dependency>
```

Expand All @@ -136,7 +136,7 @@ To use Spring Boot 3.x auto configuration support for testing:
<dependency>
<groupId>org.opensearch.client</groupId>
<artifactId>opensearch-java</artifactId>
<version>2.10.4</version>
<version>2.11.1</version>
</dependency>
```

Expand Down
4 changes: 4 additions & 0 deletions spring-data-opensearch/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ dependencies {
exclude("co.elastic.clients", "*")
exclude("org.elasticsearch.client", "*")
}
api(opensearchLibs.client) {
exclude("commons-logging", "commons-logging")
exclude("org.slf4j", "slf4j-api")
}
api(opensearchLibs.high.level.client) {
exclude("commons-logging", "commons-logging")
}
Expand Down

0 comments on commit 6b74fcf

Please sign in to comment.