diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 7cd03826..4095525b 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -6,7 +6,7 @@ FROM gitpod/workspace-java-17 # Define the versions of the JDKs to install. This is used by the `sdk install java` command to install the specified JDK. -ENV JDK8_PACKAGE=8.0.422-tem +ENV JDK8_PACKAGE=8.0.432-tem ENV JDK11_PACKAGE=11.0.25-tem ENV JDK17_PACKAGE=17.0.13-tem ENV JDK21_PACKAGE=21.0.5-tem diff --git a/Dockerfile b/Dockerfile index 581e8c89..d5a42a5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,7 +43,7 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* # Set environment variables for JDK versions managed by SDKMAN -ENV JDK8_PACKAGE=8.0.422-tem +ENV JDK8_PACKAGE=8.0.432-tem ENV JDK11_PACKAGE=11.0.25-tem ENV JDK17_PACKAGE=17.0.13-tem ENV JDK21_PACKAGE=21.0.5-tem diff --git a/plugin-modernizer-core/src/main/resources/sdkman.properties b/plugin-modernizer-core/src/main/resources/sdkman.properties index afd867be..3f3fafd4 100644 --- a/plugin-modernizer-core/src/main/resources/sdkman.properties +++ b/plugin-modernizer-core/src/main/resources/sdkman.properties @@ -2,8 +2,8 @@ # This properties file defines the specific versions of the Temurin JDK to be installed using SDKMAN. # Each property specifies the version of the JDK package corresponding to its major version number. -JDK8_PACKAGE=8.0.422-tem # JDK 8 package version -JAVA_8_HOME=$HOME/.sdkman/candidates/java/8.0.422-tem +JDK8_PACKAGE=8.0.432-tem # JDK 8 package version +JAVA_8_HOME=$HOME/.sdkman/candidates/java/8.0.432-tem JDK11_PACKAGE=11.0.25-tem # JDK 11 package version JAVA_11_HOME=$HOME/.sdkman/candidates/java/11.0.25-tem JDK17_PACKAGE=17.0.13-tem # JDK 17 package version