From 6675b804cf715b4d5f287d90439f3e860b34dfa1 Mon Sep 17 00:00:00 2001 From: Jorge Pinto Date: Thu, 19 Dec 2024 10:53:35 -0500 Subject: [PATCH] Update Quarkus Parameter for Disabling Uber-JAR File Name Suffix (cherry picked from commit 220281d89ab94ddfb67b903276eccc86e075e0f1) --- docs/src/main/asciidoc/getting-started-reactive.adoc | 2 +- docs/src/main/asciidoc/maven-tooling.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/getting-started-reactive.adoc b/docs/src/main/asciidoc/getting-started-reactive.adoc index f5b67fa360de3..76769f42c7ab3 100644 --- a/docs/src/main/asciidoc/getting-started-reactive.adoc +++ b/docs/src/main/asciidoc/getting-started-reactive.adoc @@ -36,7 +36,7 @@ include::{includes}/prerequisites.adoc[] NOTE: Verify that Maven is using the Java version you expect. If you have multiple JDKs installed, make sure Maven is using the expected one. -You can verify which JDK Maven uses by running `mvn --version.` +You can verify which JDK Maven uses by running `mvn --version`. == Imperative vs. Reactive: a question of threads diff --git a/docs/src/main/asciidoc/maven-tooling.adoc b/docs/src/main/asciidoc/maven-tooling.adoc index 2491ec6f31847..3aed90472d73b 100644 --- a/docs/src/main/asciidoc/maven-tooling.adoc +++ b/docs/src/main/asciidoc/maven-tooling.adoc @@ -595,7 +595,7 @@ Uber-Jar's final name is configurable via a Maven's build settings `finalName` o ==== Uber-Jar file name suffix -By default the generated uber JAR file name will have the `-runner` suffix, unless it was overridden by configuring a custom one with `quarkus.package.runner-suffix` configuration option. +By default the generated uber JAR file name will have the `-runner` suffix, unless it was overridden by configuring a custom one with `quarkus.package.jar.runner-suffix` configuration option. If the runner suffix is not desired, it can be disabled by setting `quarkus.package.jar.add-runner-suffix` configuration option to `false`, in which case the uber JAR will replace the original JAR file generated by `maven-jar-plugin` for the application module.