You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by nm...@apache.org on 2022/07/15 12:51:54 UTC

[ofbiz-framework] branch release22.01 updated (a130a05475 -> c91ee80c2e)

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

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


    from a130a05475 Improved: Convert SupplierProductServices.xml mini-lang to groovyDSL (OFBIZ-9350) (OFBIZ-12667)
     new 5a54afbb15 Improved: Runs GitHub Gradle build with Java 11
     new c91ee80c2e Improved: Update documentation for official support of java 11

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/gradle.yaml | 4 ++--
 INSTALL                       | 2 +-
 README.adoc                   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)


[ofbiz-framework] 02/02: Improved: Update documentation for official support of java 11

Posted by nm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit c91ee80c2eaca77bd571a2e4809daf66425139f4
Author: Nicolas Malin <ni...@nereide.fr>
AuthorDate: Fri Jul 15 11:14:35 2022 +0200

    Improved: Update documentation for official support of java 11
---
 INSTALL     | 2 +-
 README.adoc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/INSTALL b/INSTALL
index 218abd8e19..94abc25c23 100644
--- a/INSTALL
+++ b/INSTALL
@@ -6,7 +6,7 @@ your business.
 System requirements
 
 The only requirement to run OFBiz is to have the Java Development Kit (JDK)
-version 8 installed on your system (not just the JRE, but the full JDK) which
+version 11 installed on your system (not just the JRE, but the full JDK) which
 you can download from the below link. Make sure of setting the $JAVA_HOME
 environment variable.
 
diff --git a/README.adoc b/README.adoc
index 45925bc95f..b908414d38 100644
--- a/README.adoc
+++ b/README.adoc
@@ -70,7 +70,7 @@ ________________________________________________________________________________
 
 The only requirements to run OFBiz is
 
-* to have the Java Development Kit (JDK) version 8 installed on your system
+* to have the Java Development Kit (JDK) version 11 installed on your system
 (not just the JRE, but the full JDK) that you can download from the below link.
 Make sure of setting the $JAVA_HOME environment variable. +
 https://adoptopenjdk.net/[JDK download].


[ofbiz-framework] 01/02: Improved: Runs GitHub Gradle build with Java 11

Posted by nm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 5a54afbb15c47a12d4cc760b28c600230065ce32
Author: Jacques Le Roux <ja...@les7arts.com>
AuthorDate: Mon Jun 27 18:07:28 2022 +0200

    Improved: Runs GitHub Gradle build with Java 11
---
 .github/workflows/gradle.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/gradle.yaml b/.github/workflows/gradle.yaml
index d7b96a1e7d..d71ef186a0 100644
--- a/.github/workflows/gradle.yaml
+++ b/.github/workflows/gradle.yaml
@@ -32,10 +32,10 @@ jobs:
 
     steps:
     - uses: actions/checkout@v2
-    - name: Set up JDK 1.8
+    - name: Set up JDK 11
       uses: actions/setup-java@v1
       with:
-        java-version: 1.8
+        java-version: 11
     - name: Grant execute permission for gradlew
       run: chmod +x gradlew
     - name: Build with Gradle