Browse Source

Update Java in SDKman and CI image to 17.0.11-librca

Closes gh-40414
3.1.x
Moritz Halbritter 2 years ago
parent
commit
7b96941fb9
  1. 2
      .sdkmanrc
  2. 2
      ci/images/get-jdk-url.sh
  3. 4
      spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/build.gradle

2
.sdkmanrc

@ -1,3 +1,3 @@ @@ -1,3 +1,3 @@
# Enable auto-env through the sdkman_auto_env config
# Add key=value pairs of SDKs to use below
java=17.0.10-librca
java=17.0.11-librca

2
ci/images/get-jdk-url.sh

@ -3,7 +3,7 @@ set -e @@ -3,7 +3,7 @@ set -e
case "$1" in
java17)
echo "https://github.com/bell-sw/Liberica/releases/download/17.0.10+13/bellsoft-jdk17.0.10+13-linux-amd64.tar.gz"
echo "https://github.com/bell-sw/Liberica/releases/download/17.0.11+10/bellsoft-jdk17.0.11+10-linux-amd64.tar.gz"
;;
java21)
echo "https://github.com/bell-sw/Liberica/releases/download/21.0.2+14/bellsoft-jdk21.0.2+14-linux-amd64.tar.gz"

4
spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/build.gradle

@ -7,7 +7,7 @@ plugins { @@ -7,7 +7,7 @@ plugins {
description = "Spring Boot Launch Script Integration Tests"
def jdkVersion = "17.0.10+13"
def jdkVersion = "17.0.11+10"
def jdkArch = "aarch64".equalsIgnoreCase(System.getProperty("os.arch")) ? "aarch64" : "amd64"
configurations {
@ -65,4 +65,4 @@ processIntTestResources { @@ -65,4 +65,4 @@ processIntTestResources {
intTest {
dependsOn buildApp
}
}

Loading…
Cancel
Save