From 0427d0e23de39549cb7159fb8fe3fd9727b158d0 Mon Sep 17 00:00:00 2001 From: Franco B Date: Tue, 10 Feb 2026 09:42:57 -0600 Subject: [PATCH 1/2] Update maven-index-data artifact name to generic (#12) Signed-off-by: Franco Bladilo --- konflux.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/konflux.Dockerfile b/konflux.Dockerfile index de65cbb..cb7fa01 100644 --- a/konflux.Dockerfile +++ b/konflux.Dockerfile @@ -6,7 +6,7 @@ RUN cp /cachi2/output/deps/generic/fernflower-8.1.0.GA-redhat-00001.jar /opt/fer RUN cp /cachi2/output/deps/generic/java-analyzer-bundle.core-8.1.0.CR1-redhat-00003.jar /opt/java-analyzer-bundle.core.jar WORKDIR /maven-index-data -RUN cp /cachi2/output/deps/generic/maven-index-data-v20251112021242.zip /maven-index-data/maven-index-data.zip +RUN cp /cachi2/output/deps/generic/maven-index-data.zip /maven-index-data/maven-index-data.zip RUN unzip maven-index-data.zip && rm -rf maven-index-data.zip WORKDIR /jdtls From 0cbabefd94ee10b46f722c59541711ec94234c78 Mon Sep 17 00:00:00 2001 From: Franco Bladilo Date: Thu, 19 Feb 2026 12:13:10 -0600 Subject: [PATCH 2/2] Update artifact filenames #2 - See https://github.com/openshift-eng/art-tools/pull/2453 Signed-off-by: Franco Bladilo --- konflux.Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/konflux.Dockerfile b/konflux.Dockerfile index cb7fa01..f25e73f 100644 --- a/konflux.Dockerfile +++ b/konflux.Dockerfile @@ -2,15 +2,15 @@ FROM registry.redhat.io/ubi9:latest AS artifacts RUN dnf -y install tar unzip gzip && dnf -y clean all COPY --chown=1001:0 . /workspace -RUN cp /cachi2/output/deps/generic/fernflower-8.1.0.GA-redhat-00001.jar /opt/fernflower.jar -RUN cp /cachi2/output/deps/generic/java-analyzer-bundle.core-8.1.0.CR1-redhat-00003.jar /opt/java-analyzer-bundle.core.jar +RUN cp /cachi2/output/deps/generic/fernflower.jar /opt/fernflower.jar +RUN cp /cachi2/output/deps/generic/java-analyzer-bundle.core.jar /opt/java-analyzer-bundle.core.jar WORKDIR /maven-index-data RUN cp /cachi2/output/deps/generic/maven-index-data.zip /maven-index-data/maven-index-data.zip RUN unzip maven-index-data.zip && rm -rf maven-index-data.zip WORKDIR /jdtls -RUN cp /cachi2/output/deps/generic/jdt-language-server-1.51.0-202510022025.tar.gz /jdtls/jdtls-product.tar.gz +RUN cp /cachi2/output/deps/generic/jdtls-product.tar.gz /jdtls/jdtls-product.tar.gz RUN tar -xvf jdtls-product.tar.gz --no-same-owner && chmod 755 /jdtls/bin/jdtls && rm -rf jdtls-product.tar.gz RUN cp /workspace/jdtls-bin-override/jdtls.py /jdtls/bin/jdtls.py