From 23fa6631ef4e0eb47b28ca5b6ca101cfce3ed166 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20M=C3=A9sz=C3=A1ros?= Date: Tue, 2 Apr 2024 16:59:41 +0200 Subject: [PATCH] uber jar to fix issue with graalvm (#58) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Attila Mészáros --- pom.xml | 2 +- src/main/resources/application.properties | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dfd80d3..3a9938d 100644 --- a/pom.xml +++ b/pom.xml @@ -16,12 +16,12 @@ UTF-8 3.2.5 6.11.0 + 3.8.3 24.0.0 5.11.0 6.6.7 3.25.3 2.43.0 - 3.8.3 diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 4815306..6415ea7 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -2,4 +2,6 @@ quarkus.application.name=resource-glue-operator quarkus.container-image.name=resource-glue-operator quarkus.container-image.group=csviri quarkus.container-image.registry=ghcr.io -quarkus.kubernetes.image-pull-policy=if-not-present \ No newline at end of file +quarkus.kubernetes.image-pull-policy=if-not-present +# Uber Jar is required because of this issue: https://github.com/quarkusio/quarkus/issues/39833 +quarkus.package.type=uber-jar