You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2021/03/03 08:17:45 UTC

[camel-quarkus] branch master updated: Adjust references to the runner JAR for the fast-jar format

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/master by this push:
     new ea07027  Adjust references to the runner JAR for the fast-jar format
ea07027 is described below

commit ea07027e8ae09fd7979e5fdc9a437e47ad5873da
Author: James Netherton <ja...@gmail.com>
AuthorDate: Wed Mar 3 07:46:17 2021 +0000

    Adjust references to the runner JAR for the fast-jar format
---
 docs/modules/ROOT/pages/user-guide/first-steps.adoc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/modules/ROOT/pages/user-guide/first-steps.adoc b/docs/modules/ROOT/pages/user-guide/first-steps.adoc
index 368fde2..f168a51 100644
--- a/docs/modules/ROOT/pages/user-guide/first-steps.adoc
+++ b/docs/modules/ROOT/pages/user-guide/first-steps.adoc
@@ -155,9 +155,9 @@ This takes about 2.5 minutes (once you have all dependencies cached).
 [source,shell]
 ----
 $ mvn clean package
-$ ls -lh target
+$ ls -lh target/quarkus-app
 ...
--rw-r--r--. 1 ppalaga ppalaga 238K Oct 11 18:55  my-app-0.0.1-SNAPSHOT-runner.jar
+-rw-r--r--. 1 ppalaga ppalaga 238K Oct 11 18:55  quarkus-run.jar
 ...
 ----
 
@@ -165,14 +165,14 @@ You can run it as follows:
 
 [source,shell]
 ----
-$ java -jar target/*-runner.jar
+$ java -jar target/quarkus-app/quarkus-run.jar
 ...
 [io.quarkus] (main) Quarkus started in 1.163s. Listening on: http://[::]:8080
 ----
 
 Notice the boot time around a second.
 
-The thin `jar` contains just the application code. To run it, the dependencies in `target/lib` are required too.
+The thin `jar` contains just the application code. To run it, the dependencies in `target/quarkus-app/lib` are required too.
 
 ===== Native mode