From 7821c12338d616ab9cb07858b96ddfe1d4d05c43 Mon Sep 17 00:00:00 2001 From: Mustapha Zorgati <15628173+mustaphazorgati@users.noreply.github.com> Date: Wed, 27 Apr 2022 15:30:15 +0200 Subject: [PATCH] TSK-1869: updated demo app environment to JDK 11 Co-authored-by: knht <43456808+knht@users.noreply.github.com> --- ci/ibm_cf_manifest.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/ci/ibm_cf_manifest.yml b/ci/ibm_cf_manifest.yml index 84b0a3e67..991874e4e 100644 --- a/ci/ibm_cf_manifest.yml +++ b/ci/ibm_cf_manifest.yml @@ -1,8 +1,10 @@ # Configuration file for Cloud Foundry, see https://docs.cloudfoundry.org/devguide/deploy-apps/manifest.html applications: -- name: taskana-rest-spring-example-boot - path: ../rest/taskana-rest-spring-example-boot/target/taskana-rest-spring-example-boot.jar - buildpacks: - - https://github.com/cloudfoundry/java-buildpack.git - memory: 1G - disk_quota: 512M + - name: taskana-rest-spring-example-boot + path: ../rest/taskana-rest-spring-example-boot/target/taskana-rest-spring-example-boot.jar + buildpacks: + - https://github.com/cloudfoundry/java-buildpack.git + memory: 1G + disk_quota: 512M + env: + JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 11.+ } }'