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 a0d82d7 Increased maven-plugin-version to 1.11.0.Final. Adjusted
description of rest-json example
a0d82d7 is described below
commit a0d82d7d0f1da49dd86d794fe1bde9c6e855c69f
Author: Thomas Stuber <[email protected]>
AuthorDate: Sat Jan 23 09:19:23 2021 +0100
Increased maven-plugin-version to 1.11.0.Final. Adjusted description of
rest-json example
---
docs/modules/ROOT/pages/user-guide/first-steps.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/modules/ROOT/pages/user-guide/first-steps.adoc
b/docs/modules/ROOT/pages/user-guide/first-steps.adoc
index 1c5e8fd..368fde2 100644
--- a/docs/modules/ROOT/pages/user-guide/first-steps.adoc
+++ b/docs/modules/ROOT/pages/user-guide/first-steps.adoc
@@ -29,7 +29,7 @@ Quarkus provides a Maven plugin that enables you to quickly
bootstrap projects.
[source,shell]
----
-$ mvn io.quarkus:quarkus-maven-plugin:1.8.3.Final:create \
+$ mvn io.quarkus:quarkus-maven-plugin:1.11.0.Final:create \
-DprojectGroupId=org.acme \
-DprojectArtifactId=getting-started \
-Dextensions=camel-quarkus-log,camel-quarkus-timer
@@ -101,7 +101,7 @@ The application has three compile dependencies:
They are managed within the `camel-quarkus-bom` that is imported in
`<dependencyManagement>`.
-There are only three classes in the application/ `Routes` defining the Camel
routes and a couple of entity classes. `Fruit` and `Legume`.
+There are only three classes in the application: `Routes` defines the Camel
routes, whereas `Fruit` and `Legume` are entities.
The application is configured by properties defined within
`src/main/resources/application.properties`. E.g. the `camel.context.name` is
set there.