From 2a39d25303b1dc6192f675862962c2550cb28777 Mon Sep 17 00:00:00 2001 From: Alban Auzeill Date: Tue, 15 Oct 2024 10:20:01 +0200 Subject: [PATCH] [NO JIRA] Point out in the README.md, that we now need Java 22 to build (#4904) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cbeafb0ad27..5cc599f3a9a 100644 --- a/README.md +++ b/README.md @@ -55,9 +55,9 @@ To run tests locally follow these instructions. ### Java versions -You need `Java 21` to build the project and `Java 17` run the Integration Tests (ITs). -* `Java 17` can be used to build and test all modules except under `java-checks-test-sources` that requires `Java 21`. -* `Java 21` can be used to build and test all modules except under `its` that requires `Java 17` because of SQ imcompatibility. +You need `Java 22` to build the project and `Java 17` run the Integration Tests (ITs). +* `Java 17` can be used to build and test all modules except under `java-checks-test-sources` that requires `Java 22`. +* `Java 22` can be used to build and test all modules except under `its` that requires `Java 17` because of SQ incompatibility. ### Build the Project and Run Unit Tests @@ -164,7 +164,7 @@ Make sure that the `java-checks-tests-sources` module has been compiled (ie: the In doubt, go the [`java-checks-tests-sources`](java-checks-tests-sources) module and run: ```shell -# Use java 21! +# Use java 22! mvn clean compile ```