Skip to content

Commit 6200c63

Browse files
[SDKs] Update the versions of the temurin installers from SDKMAN (#1139)
* chore: [sdkman.properties] Update the JDK17 JAVA_HOME Made with ❤️️ by updatecli * chore: [Dockerfile] Update the JDK11 version for SDKMAN Made with ❤️️ by updatecli * chore: [sdkman.properties] Update the JDK11 version Made with ❤️️ by updatecli * chore: [sdkman.properties] Update the JDK21 version Made with ❤️️ by updatecli * chore: [GitPod] Update the JDK21 version for SDKMAN Made with ❤️️ by updatecli * chore: [sdkman.properties] Update the JDK21 JAVA_HOME Made with ❤️️ by updatecli * chore: [Dockerfile] Update the JDK17 version for SDKMAN Made with ❤️️ by updatecli * chore: [sdkman.properties] Update the JDK17 version Made with ❤️️ by updatecli * chore: [sdkman.properties] Update the JDK11 JAVA_HOME Made with ❤️️ by updatecli --------- Co-authored-by: Jenkins Infra Bot (updatecli) <60776566+jenkins-infra-bot@users.noreply.github.com>
1 parent a7e2e28 commit 6200c63

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.gitpod/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ FROM gitpod/workspace-java-17
77

88
# Define the versions of the JDKs to install. This is used by the `sdk install java` command to install the specified JDK.
99
ENV JDK8_PACKAGE=8.0.452-tem
10-
ENV JDK11_PACKAGE=11.0.27-tem
11-
ENV JDK17_PACKAGE=17.0.15-tem
12-
ENV JDK21_PACKAGE=21.0.7-tem
10+
ENV JDK11_PACKAGE=11.0.28-tem
11+
ENV JDK17_PACKAGE=17.0.16-tem
12+
ENV JDK21_PACKAGE=21.0.8-tem
1313

1414
# Update the package list and install Maven. Maven is required for building Java projects, including Jenkins plugins.
1515
# The `apt-get update` command updates the list of available packages and their versions, but it does not install or

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ RUN apt-get update && \
1313

1414
# Set environment variables for JDK versions managed by SDKMAN
1515
ENV JDK8_PACKAGE=8.0.452-tem
16-
ENV JDK11_PACKAGE=11.0.27-tem
17-
ENV JDK17_PACKAGE=17.0.15-tem
18-
ENV JDK21_PACKAGE=21.0.7-tem
16+
ENV JDK11_PACKAGE=11.0.28-tem
17+
ENV JDK17_PACKAGE=17.0.16-tem
18+
ENV JDK21_PACKAGE=21.0.8-tem
1919
ENV MVN_INSTALL_PLUGIN_VERSION=3.1.4
2020

2121
# Replace the default shell with bash

plugin-modernizer-core/src/main/resources/sdkman.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
JDK8_PACKAGE=8.0.452-tem # JDK 8 package version
66
JAVA_8_HOME=$HOME/.sdkman/candidates/java/8.0.452-tem
7-
JDK11_PACKAGE=11.0.27-tem # JDK 11 package version
8-
JAVA_11_HOME=$HOME/.sdkman/candidates/java/11.0.27-tem
9-
JDK17_PACKAGE=17.0.15-tem # JDK 17 package version
10-
JAVA_17_HOME=$HOME/.sdkman/candidates/java/17.0.15-tem
11-
JDK21_PACKAGE=21.0.7-tem # JDK 21 package version
12-
JAVA_21_HOME=$HOME/.sdkman/candidates/java/21.0.7-tem
7+
JDK11_PACKAGE=11.0.28-tem # JDK 11 package version
8+
JAVA_11_HOME=$HOME/.sdkman/candidates/java/11.0.28-tem
9+
JDK17_PACKAGE=17.0.16-tem # JDK 17 package version
10+
JAVA_17_HOME=$HOME/.sdkman/candidates/java/17.0.16-tem
11+
JDK21_PACKAGE=21.0.8-tem # JDK 21 package version
12+
JAVA_21_HOME=$HOME/.sdkman/candidates/java/21.0.8-tem

0 commit comments

Comments
 (0)