This is an automated email from the ASF dual-hosted git repository. aldettinger 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 87246b0 Fixed minor issues in examples doc 87246b0 is described below commit 87246b0e0e20fc36c82e15bc1cab21d6867877a4 Author: aldettinger <aldettin...@gmail.com> AuthorDate: Tue Aug 11 15:36:14 2020 +0200 Fixed minor issues in examples doc --- examples/file-split-log-xml/README.adoc | 4 ++-- examples/http-log/README.adoc | 8 ++++---- examples/observability/README.adoc | 4 ++-- examples/rest-json/README.adoc | 4 ++-- examples/timer-log-cdi/README.adoc | 6 +++--- examples/timer-log-main/README.adoc | 6 +++--- examples/timer-log-spring/README.adoc | 6 +++--- examples/timer-log-xml/README.adoc | 4 ++-- examples/timer-log/README.adoc | 4 ++-- 9 files changed, 23 insertions(+), 23 deletions(-) diff --git a/examples/file-split-log-xml/README.adoc b/examples/file-split-log-xml/README.adoc index aa801c1..fa499de 100644 --- a/examples/file-split-log-xml/README.adoc +++ b/examples/file-split-log-xml/README.adoc @@ -46,7 +46,7 @@ $ mvn clean package $ java -jar target/*-runner.jar ... -[org.apa.cam.qua.cor.FastCamelContext] (main) Apache Camel 3.0.0 (CamelContext: camel-quarkus-xml) started in 0.081 seconds +[io.quarkus] (main) camel-quarkus-examples-... started in 0.570s. ---- ==== Native mode @@ -61,6 +61,6 @@ To prepare a native executable using GraalVM, run the following command: $ mvn clean package -Pnative $ ./target/*-runner ... -[io.quarkus] (main) camel-quarkus-examples-file-log-xml 1.1.0-SNAPSHOT (running on Quarkus 1.1.0.Final) started in 0.011s. +[io.quarkus] (main) camel-quarkus-examples-... started in 0.011s. ... ---- diff --git a/examples/http-log/README.adoc b/examples/http-log/README.adoc index df1ff52..15baf95 100644 --- a/examples/http-log/README.adoc +++ b/examples/http-log/README.adoc @@ -31,7 +31,7 @@ workspace. Any modifications in your project will automatically take effect in t TIP: Please refer to the Development mode section of https://camel.apache.org/camel-quarkus/latest/first-steps.html#_development_mode[Camel Quarkus User guide] for more details. -You can from a web browser call the two services via +From a web browser, you can call the two services via - http://localhost:8080/hello - http://localhost:8080/camel/hello @@ -39,7 +39,7 @@ You can from a web browser call the two services via There is also health check and metrics available from the following urls: - http://localhost:8080/health -- http://localhost:8080/metrcis +- http://localhost:8080/metrics === Package and run the application @@ -55,7 +55,7 @@ https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_ $ mvn clean package $ java -jar target/*-runner.jar ... -[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 1.163s. Listening on: http://0.0.0.0:8080 ---- ==== Native mode @@ -70,7 +70,7 @@ To prepare a native executable using GraalVM, run the following command: $ mvn clean package -Pnative $ ./target/*-runner ... -[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 0.013s. Listening on: http://0.0.0.0:8080 ... ---- diff --git a/examples/observability/README.adoc b/examples/observability/README.adoc index 04a2019..d3ef123 100644 --- a/examples/observability/README.adoc +++ b/examples/observability/README.adoc @@ -91,7 +91,7 @@ https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_ $ mvn clean package $ java -jar target/*-runner.jar ... -[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 1.163s. Listening on: http://0.0.0.0:8080 ---- ==== Native mode @@ -106,6 +106,6 @@ To prepare a native executable using GraalVM, run the following command: $ mvn clean package -Pnative $ ./target/*-runner ... -[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 0.013s. Listening on: http://0.0.0.0:8080 ... ---- diff --git a/examples/rest-json/README.adoc b/examples/rest-json/README.adoc index 324e122..be10e2b 100644 --- a/examples/rest-json/README.adoc +++ b/examples/rest-json/README.adoc @@ -37,7 +37,7 @@ https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_ $ mvn clean package $ java -jar target/*-runner.jar ... -[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 1.163s. Listening on: http://0.0.0.0:8080 ---- ==== Native mode @@ -52,6 +52,6 @@ To prepare a native executable using GraalVM, run the following command: $ mvn clean package -Pnative $ ./target/*-runner ... -[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 0.013s. Listening on: http://0.0.0.0:8080 ... ---- diff --git a/examples/timer-log-cdi/README.adoc b/examples/timer-log-cdi/README.adoc index 6b0f93c..f9d0495 100644 --- a/examples/timer-log-cdi/README.adoc +++ b/examples/timer-log-cdi/README.adoc @@ -1,4 +1,4 @@ -= timer-log += timer-log-cdi This is a basic hello world example that uses CDI to set-up a Camel timer that triggers every second and prints to the @@ -37,7 +37,7 @@ https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_ $ mvn clean package $ java -jar target/*-runner.jar ... -[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 1.163s. ---- ==== Native mode @@ -52,6 +52,6 @@ To prepare a native executable using GraalVM, run the following command: $ mvn clean package -Pnative $ ./target/*-runner ... -[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 0.013s. ... ---- diff --git a/examples/timer-log-main/README.adoc b/examples/timer-log-main/README.adoc index 283ff43..d0497e3 100644 --- a/examples/timer-log-main/README.adoc +++ b/examples/timer-log-main/README.adoc @@ -1,4 +1,4 @@ -= timer-log += timer-log-main This is a basic hello world example that uses a custom main to set-up a Camel timer that triggers every second and prints to the log. @@ -36,7 +36,7 @@ https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_ $ mvn clean package $ java -jar target/*-runner.jar ... -[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 1.163s. ---- ==== Native mode @@ -51,6 +51,6 @@ To prepare a native executable using GraalVM, run the following command: $ mvn clean package -Pnative $ ./target/*-runner ... -[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 0.013s. ... ---- diff --git a/examples/timer-log-spring/README.adoc b/examples/timer-log-spring/README.adoc index ad775b2..1f65a37 100644 --- a/examples/timer-log-spring/README.adoc +++ b/examples/timer-log-spring/README.adoc @@ -1,4 +1,4 @@ -= timer-log += timer-log-spring This is a basic hello world example that uses Spring to set-up a Camel timer that triggers every second and prints to the @@ -37,7 +37,7 @@ https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_ $ mvn clean package $ java -jar target/*-runner.jar ... -[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 0.497s. ---- ==== Native mode @@ -52,6 +52,6 @@ To prepare a native executable using GraalVM, run the following command: $ mvn clean package -Pnative $ ./target/*-runner ... -[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 0.007s. ... ---- diff --git a/examples/timer-log-xml/README.adoc b/examples/timer-log-xml/README.adoc index 39d09ba..0e7af51 100644 --- a/examples/timer-log-xml/README.adoc +++ b/examples/timer-log-xml/README.adoc @@ -38,7 +38,7 @@ https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_ $ mvn clean package $ java -jar target/*-runner.jar ... -[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 1.163s. ---- ==== Native mode @@ -53,6 +53,6 @@ To prepare a native executable using GraalVM, run the following command: $ mvn clean package -Pnative $ ./target/*-runner ... -[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 0.013s. ... ---- diff --git a/examples/timer-log/README.adoc b/examples/timer-log/README.adoc index c2be7a4..8596a9f 100644 --- a/examples/timer-log/README.adoc +++ b/examples/timer-log/README.adoc @@ -37,7 +37,7 @@ https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_ $ mvn clean package $ java -jar target/*-runner.jar ... -[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 1.163s. ---- ==== Native mode @@ -52,6 +52,6 @@ To prepare a native executable using GraalVM, run the following command: $ mvn clean package -Pnative $ ./target/*-runner ... -[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: http://[::]:8080 +[io.quarkus] (main) camel-quarkus-examples-... started in 0.013s. ... ----