This is an automated email from the ASF dual-hosted git repository.

timoninmaxim pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-teamcity-bot.git


The following commit(s) were added to refs/heads/master by this push:
     new 49fad735 IGNITE-26338 Upgrade java version to 11 (#201)
49fad735 is described below

commit 49fad7354359f3f5f8dc5f8e8c1a672f99ea3950
Author: Popov Aleksandr <[email protected]>
AuthorDate: Sat Aug 30 10:02:48 2025 +0300

    IGNITE-26338 Upgrade java version to 11 (#201)
---
 README.md    | 2 +-
 build.gradle | 8 ++++++--
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 207acb4e..fd565ec1 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@ A build can be done using following commands
 - gradle clean
 - gradle build
 
-It is recommended to use Java 8 for development.
+It is recommended to use Java 11 for development.
 
 It may be required to install 
 [Java Cryptography Extension JCE Unlimited Strength Jurisdiction Policy Files 
8 
Download](https://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html)
diff --git a/build.gradle b/build.gradle
index 38e97cf5..eefac876 100644
--- a/build.gradle
+++ b/build.gradle
@@ -39,8 +39,12 @@ subprojects {
 
 allprojects {
     apply plugin: 'java'
-    sourceCompatibility = '1.8'
-    targetCompatibility = '1.8'
+
+    java {
+        toolchain {
+            languageVersion = JavaLanguageVersion.of(11)
+        }
+    }
 
     ext {
 

Reply via email to