From 4efc3910cf359af2420c23e90f2391b64f972fdc Mon Sep 17 00:00:00 2001 From: Aymen Mehri Date: Sun, 2 Aug 2026 02:16:54 +0100 Subject: [PATCH] docs: correct the documented minimum Java version The README states that Java 8 or higher is required, but the project has not been buildable on Java 8 for some time: maven-compiler-plugin is configured with 11, and the integration workflow only ever exercises Java 11, 17 and 21. A user on Java 8 hits a compilation failure with no indication that the documented requirement is wrong. Correct the stated minimum to Java 11 and align the javadoc plugin, which was still pinned to 1.8 while the compiler targeted 11. Also bump the version in the installation snippet from 4.1.0 to 4.1.2 to match the latest release. --- README.md | 4 ++-- pom.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5df28ca8..412832a0 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Zitadel website and obtain the necessary credentials to access the API. ### Minimum Requirements -Ensure you have Java 8 or higher installed. You also need Maven to +Ensure you have Java 11 or higher installed. You also need Maven to install dependencies. ## Using the SDK @@ -49,7 +49,7 @@ Add the SDK dependency to your `pom.xml`: io.github.zitadel client - 4.1.0 + 4.1.2 ``` diff --git a/pom.xml b/pom.xml index 7bb4c0c7..49cf19fc 100644 --- a/pom.xml +++ b/pom.xml @@ -211,7 +211,7 @@ 3.11.2 none - 1.8 + 11