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

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


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

commit 0d7e61b242328b20d1709269f6369783a32dfe35
Author: Jacques Le Roux <jacques.le.r...@les7arts.com>
AuthorDate: Fri Jan 13 08:23:13 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 d1ec7c9226..92d23a125a 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