Skip to content

Commit 8625b8c

Browse files
Bump quarkusVersion from 1.11.3.Final to 1.12.0.Final (#374)
* Bump quarkusVersion from 1.11.3.Final to 1.12.0.Final Bumps `quarkusVersion` from 1.11.3.Final to 1.12.0.Final. Updates `quarkus-bom` from 1.11.3.Final to 1.12.0.Final - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](quarkusio/quarkus@1.11.3.Final...1.12.0.Final) Updates `io.quarkus` from 1.11.3.Final to 1.12.0.Final Signed-off-by: dependabot[bot] <support@github.com> * Adjust docker config Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aaron Coburn <acoburn@apache.org>
1 parent b7cc96a commit 8625b8c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ext {
3535
jacksonVersion = "2.10.1"
3636
jenaVersion = "3.17.0"
3737
mustacheVersion = "0.9.6"
38-
quarkusVersion = "1.11.3.Final"
38+
quarkusVersion = "1.12.0.Final"
3939
slf4jVersion = "1.7.30"
4040
smallryeConfigVersion = "2.1.0"
4141
smallryeHealthVersion = "2.2.5"

platform/quarkus/src/main/docker/Dockerfile.jvm

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ LABEL maintainer="Aaron Coburn <acoburn@apache.org>"
1919

2020
ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager -XX:+ExitOnOutOfMemeoryError"
2121

22-
COPY build/lib/* /trellis/lib/
23-
COPY build/*-runner.jar /trellis/app.jar
22+
COPY build/quarkus-app/lib/ /trellis/lib/
23+
COPY build/quarkus-app/app/ /trellis/app/
24+
COPY build/quarkus-app/quarkus/ /trellis/quarkus/
25+
COPY build/quarkus-app/quarkus-run.jar /trellis/app.jar
2426

2527
WORKDIR /trellis/
2628

0 commit comments

Comments
 (0)