Skip to content

Commit

Permalink
added jdk support section
Browse files Browse the repository at this point in the history
  • Loading branch information
ma1581 committed Mar 1, 2025
1 parent 1f2beb0 commit 71bf400
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,25 @@ Client client = new Client(config);

This package guarantees compatibility with [version v1.x of Meilisearch](https://github.com/meilisearch/meilisearch/releases/latest), but some features may not be present. Please check the [issues](https://github.com/meilisearch/meilisearch-java/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22+label%3Aenhancement) for more info.

This SDK is compatible with the following JDK versions:

| SDK Version | Supported Java Versions |
|-------------|-------------------------|
| v1.x | JDK 8 and above |

### Recommended Java Version
For optimal performance and security, we recommend using **Java 11 or later**.

Ensure that your project is set to a compatible Java version in your `build.gradle`:

```gradle
java {
sourceCompatibility = JavaVersion.VERSION_1_8 // or JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_1_8 // or JavaVersion.VERSION_11
}
## 💡 Learn more
The following sections in our main documentation website may interest you:
Expand Down

0 comments on commit 71bf400

Please sign in to comment.