Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SDKs] Update the versions of the temurin installers from SDKMAN #354

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitpod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions plugin-modernizer-core/src/main/resources/sdkman.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down