You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by al...@apache.org on 2021/11/26 02:58:16 UTC

[fineract] branch develop updated (48e6a41 -> f8a0a8d)

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

aleks pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git.


    from 48e6a41  Feat: Filter Transactions from last interest posting date (#1933)
     new 97bcd09  Upgrade JDK 11 LTS to JDK 17 LTS (FINERACT-1406)
     new f8a0a8d  Upgrade JDK 11 LTS to JDK 17 LTS (FINERACT-1406)

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:
 .travis.yml                              | 4 ++--
 Dockerfile                               | 4 ++--
 gradle/wrapper/gradle-wrapper.properties | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

[fineract] 01/02: Upgrade JDK 11 LTS to JDK 17 LTS (FINERACT-1406)

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

aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit 97bcd0926cbd3913c96bad000f551ea850e3c110
Author: Victor Romero <vi...@fintecheando.mx>
AuthorDate: Thu Nov 25 08:54:25 2021 -0600

    Upgrade JDK 11 LTS to JDK 17 LTS (FINERACT-1406)
---
 Dockerfile                               | 4 ++--
 gradle/wrapper/gradle-wrapper.properties | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index c1b16e6..2d1b6a4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 #
-FROM azul/zulu-openjdk-debian:11 AS builder
+FROM azul/zulu-openjdk-debian:17 AS builder
 
 RUN apt-get update -qq && apt-get install -y wget
 
@@ -37,7 +37,7 @@ RUN wget -q https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.23/mys
 
 # =========================================
 
-FROM azul/zulu-openjdk-alpine:11 AS fineract
+FROM azul/zulu-openjdk-alpine:17 AS fineract
 
 COPY --from=builder /fineract/target/BOOT-INF/lib /app/lib
 COPY --from=builder /fineract/target/META-INF /app/META-INF
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index ffed3a2..e750102 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
 distributionBase=GRADLE_USER_HOME
 distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
 zipStoreBase=GRADLE_USER_HOME
 zipStorePath=wrapper/dists

[fineract] 02/02: Upgrade JDK 11 LTS to JDK 17 LTS (FINERACT-1406)

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

aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit f8a0a8d5cd8cdfa2bed471a5d4096a77c3122ada
Author: Victor Romero <vi...@fintecheando.mx>
AuthorDate: Thu Nov 25 18:34:19 2021 -0600

    Upgrade JDK 11 LTS to JDK 17 LTS (FINERACT-1406)
---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index dfed11d..157f6d9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -57,8 +57,8 @@ install:
   - curl -O https://cdn.azul.com/zulu/bin/zulu-repo_1.0.0-3_all.deb
   - sudo apt-get -yq install ./zulu-repo_1.0.0-3_all.deb
   - sudo apt-get -q update
-  - sudo apt-get -yq install zulu11-jdk
-  - export JAVA_HOME=/usr/lib/jvm/zulu11
+  - sudo apt-get -yq install zulu17-jdk
+  - export JAVA_HOME=/usr/lib/jvm/zulu17
   - echo "USE mysql;\nALTER USER 'root'@'localhost' IDENTIFIED BY 'mysql';\n" | mysql -u root
   - mysql -u root -pmysql -e 'CREATE DATABASE IF NOT EXISTS `fineract_tenants`;'
   - mysql -u root -pmysql -e 'CREATE DATABASE IF NOT EXISTS `fineract_default`;'