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

CPBR-1974 update java version to 21 #575

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 base-lite/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ RUN microdnf --nodocs install yum \
&& yum --nodocs update -y \
&& yum --nodocs install -y --setopt=install_weak_deps=False \
"curl${CURL_VERSION}" \
"temurin-17-jre${TEMURIN_JDK_VERSION}" \
"temurin-21-jre${TEMURIN_JDK_VERSION}" \
&& microdnf clean all \
&& yum clean all \
&& rm -rf /tmp/* \
Expand Down
2 changes: 1 addition & 1 deletion base/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ RUN microdnf --nodocs install yum \
"libcurl${CURL_VERSION}" \
"findutils${FINDUTILS_VERSION}" \
"crypto-policies-scripts${CRYPTO_POLICIES_SCRIPTS_VERSION}" \
"temurin-17-jdk${TEMURIN_JDK_VERSION}" "temurin-17-jre${TEMURIN_JDK_VERSION}" \
"temurin-21-jdk${TEMURIN_JDK_VERSION}" "temurin-21-jre${TEMURIN_JDK_VERSION}" \
&& alternatives --set python /usr/bin/python3 \
&& python3 -m pip install --upgrade "setuptools${PYTHON_SETUPTOOLS_VERSION}" \
&& python3 -m pip install --prefer-binary --prefix=/usr/local --upgrade "${PYTHON_CONFLUENT_DOCKER_UTILS_INSTALL_SPEC}" \
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<ubi.findutils.version>1:4.6.0-21.el8</ubi.findutils.version>
<ubi.crypto.policies.scripts.version>20230731-1.git3177e06.el8</ubi.crypto.policies.scripts.version>
<!-- ZULU OpenJDK Package Version -->
<ubi.temurin.jdk.version>17.0.12.0.0.7-2</ubi.temurin.jdk.version>
<ubi.temurin.jdk.version>21.0.5.0.0.11-1</ubi.temurin.jdk.version>
<!-- Python Module Versions -->
<ubi.python.pip.version>20.*</ubi.python.pip.version>
<ubi.python.setuptools.version>71.1.0</ubi.python.setuptools.version>
Expand Down