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

davsclaus 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 5e9b19c  Polish example readme
5e9b19c is described below

commit 5e9b19cb36043e9a7547e6f8defdacd8a4c5ac8a
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Tue Apr 14 20:03:11 2020 +0200

    Polish example readme
---
 examples/file-split-log-xml/README.adoc | 2 +-
 examples/http-log/README.adoc           | 6 +++---
 examples/observability/README.adoc      | 6 +++---
 examples/rest-json/README.adoc          | 6 +++---
 examples/timer-log-cdi/README.adoc      | 6 +++---
 examples/timer-log-spring/README.adoc   | 6 +++---
 examples/timer-log-xml/README.adoc      | 6 +++---
 examples/timer-log/README.adoc          | 6 +++---
 8 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/examples/file-split-log-xml/README.adoc 
b/examples/file-split-log-xml/README.adoc
index 9e1165b..aa801c1 100644
--- a/examples/file-split-log-xml/README.adoc
+++ b/examples/file-split-log-xml/README.adoc
@@ -18,7 +18,7 @@ and other general information.
 
 [source,shell]
 ----
-$ mvn clean compile quarkus:dev -DnoDeps
+$ mvn clean compile quarkus:dev
 ----
 
 The above command compiles the project, starts the application and lets the 
Quarkus tooling watch for changes in your
diff --git a/examples/http-log/README.adoc b/examples/http-log/README.adoc
index b4f8ee6..209bbe1 100644
--- a/examples/http-log/README.adoc
+++ b/examples/http-log/README.adoc
@@ -10,7 +10,7 @@ and other general information.
 
 [source,shell]
 ----
-$ mvn clean compile quarkus:dev -DnoDeps
+$ mvn clean compile quarkus:dev
 ----
 
 The above command compiles the project, starts the application and lets the 
Quarkus tooling watch for changes in your
@@ -43,7 +43,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 0.23.2 started in 1.163s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: 
http://[::]:8080
 ----
 
 ==== Native mode
@@ -58,6 +58,6 @@ To prepare a native executable using GraalVM, run the 
following command:
 $ mvn clean package -Pnative
 $ ./target/*-runner
 ...
-[io.quarkus] (main) Quarkus 0.23.2 started in 0.013s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: 
http://[::]:8080
 ...
 ----
diff --git a/examples/observability/README.adoc 
b/examples/observability/README.adoc
index 3d0d588..04a2019 100644
--- a/examples/observability/README.adoc
+++ b/examples/observability/README.adoc
@@ -9,7 +9,7 @@ and other general information.
 
 [source,shell]
 ----
-$ mvn clean compile quarkus:dev -DnoDeps
+$ mvn clean compile quarkus:dev
 ----
 
 The above command compiles the project, starts the application and lets the 
Quarkus tooling watch for changes in your
@@ -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 0.23.2 started in 1.163s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: 
http://[::]: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 0.23.2 started in 0.013s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: 
http://[::]:8080
 ...
 ----
diff --git a/examples/rest-json/README.adoc b/examples/rest-json/README.adoc
index dd95252..324e122 100644
--- a/examples/rest-json/README.adoc
+++ b/examples/rest-json/README.adoc
@@ -9,7 +9,7 @@ and other general information.
 
 [source,shell]
 ----
-$ mvn clean compile quarkus:dev -DnoDeps
+$ mvn clean compile quarkus:dev
 ----
 
 The above command compiles the project, starts the application and lets the 
Quarkus tooling watch for changes in your
@@ -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 0.23.2 started in 1.163s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: 
http://[::]: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 0.23.2 started in 0.013s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: 
http://[::]:8080
 ...
 ----
diff --git a/examples/timer-log-cdi/README.adoc 
b/examples/timer-log-cdi/README.adoc
index 092b310..6b0f93c 100644
--- a/examples/timer-log-cdi/README.adoc
+++ b/examples/timer-log-cdi/README.adoc
@@ -11,7 +11,7 @@ and other general information.
 
 [source,shell]
 ----
-$ mvn clean compile quarkus:dev -DnoDeps
+$ mvn clean compile quarkus:dev
 ----
 
 The above command compiles the project, starts the application and lets the 
Quarkus tooling watch for changes in your
@@ -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 0.23.2 started in 1.163s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: 
http://[::]: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 0.23.2 started in 0.013s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: 
http://[::]:8080
 ...
 ----
diff --git a/examples/timer-log-spring/README.adoc 
b/examples/timer-log-spring/README.adoc
index d9b3241..ad775b2 100644
--- a/examples/timer-log-spring/README.adoc
+++ b/examples/timer-log-spring/README.adoc
@@ -11,7 +11,7 @@ and other general information.
 
 [source,shell]
 ----
-$ mvn clean compile quarkus:dev -DnoDeps
+$ mvn clean compile quarkus:dev
 ----
 
 The above command compiles the project, starts the application and lets the 
Quarkus tooling watch for changes in your
@@ -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 0.23.2 started in 1.163s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: 
http://[::]: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 0.23.2 started in 0.013s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: 
http://[::]:8080
 ...
 ----
diff --git a/examples/timer-log-xml/README.adoc 
b/examples/timer-log-xml/README.adoc
index f4142af..39d09ba 100644
--- a/examples/timer-log-xml/README.adoc
+++ b/examples/timer-log-xml/README.adoc
@@ -11,7 +11,7 @@ and other general information.
 
 [source,shell]
 ----
-$ mvn clean compile quarkus:dev -DnoDeps
+$ mvn clean compile quarkus:dev
 ----
 
 The above command compiles the project, starts the application and lets the 
Quarkus tooling watch for changes in your
@@ -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 0.23.2 started in 1.163s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: 
http://[::]:8080
 ----
 
 ==== 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 0.23.2 started in 0.013s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: 
http://[::]:8080
 ...
 ----
diff --git a/examples/timer-log/README.adoc b/examples/timer-log/README.adoc
index 9861600..c2be7a4 100644
--- a/examples/timer-log/README.adoc
+++ b/examples/timer-log/README.adoc
@@ -10,7 +10,7 @@ and other general information.
 
 [source,shell]
 ----
-$ mvn clean compile quarkus:dev -DnoDeps
+$ mvn clean compile quarkus:dev
 ----
 
 The above command compiles the project, starts the application and lets the 
Quarkus tooling watch for changes in your
@@ -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 0.23.2 started in 1.163s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: 
http://[::]: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 0.23.2 started in 0.013s. Listening on: 
http://[::]:8080
+[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: 
http://[::]:8080
 ...
 ----

Reply via email to