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

jleroux pushed a commit to branch release22.01
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release22.01 by this push:
     new 490016fcf7 Improved: Upgrade to gradle 7.6 - support JDK 11 -> 17  
(OFBIZ-12400)
490016fcf7 is described below

commit 490016fcf737b2c7f490237db032e2a0ca05956c
Author: Jacques Le Roux <jacques.le.r...@les7arts.com>
AuthorDate: Fri Jan 13 08:25:33 2023 +0100

    Improved: Upgrade to gradle 7.6 - support JDK 11 -> 17  (OFBIZ-12400)
    
    Downgrades references from JDK 17 to JDK 11. That's something I forgot to 
test,
    it's blocking the demo
---
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index d0827e47e0..99c93963e5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -126,8 +126,8 @@ node {
 }
 
 java {
-    sourceCompatibility(JavaVersion.VERSION_17)
-    targetCompatibility(JavaVersion.VERSION_17)
+    sourceCompatibility(JavaVersion.VERSION_11)
+    targetCompatibility(JavaVersion.VERSION_11)
 }
 
 // Java compile options, syntax gradlew -PXlint:none build

Reply via email to