This is an automated email from the ASF dual-hosted git repository.
tsato pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new 8156097 Fix admonitions in adocs (#2516)
8156097 is described below
commit 8156097932c2d98bfd7dab4b15b77241cc79c062
Author: Tadayoshi Sato <[email protected]>
AuthorDate: Tue Apr 27 17:23:30 2021 +0900
Fix admonitions in adocs (#2516)
---
docs/modules/ROOT/pages/user-guide/configuration.adoc | 5 +++--
docs/modules/ROOT/pages/user-guide/defining-camel-routes.adoc | 2 +-
docs/modules/ROOT/pages/user-guide/dependency-management.adoc | 2 +-
docs/modules/ROOT/pages/user-guide/first-steps.adoc | 2 +-
4 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/docs/modules/ROOT/pages/user-guide/configuration.adoc
b/docs/modules/ROOT/pages/user-guide/configuration.adoc
index e947f2d..c78836b 100644
--- a/docs/modules/ROOT/pages/user-guide/configuration.adoc
+++ b/docs/modules/ROOT/pages/user-guide/configuration.adoc
@@ -6,7 +6,7 @@ the Quarkus Application lifecycle. The configuration step
happens at build time
it is driven by the Camel Quarkus extensions which can be tuned using Camel
Quarkus specific `quarkus.camel.*`
properties.
-[INFO]
+[NOTE]
====
`quarkus.camel.*` configuration properties are documented on the individual
extension pages
- see e.g. xref:reference/extensions/core.adoc[Camel Quarkus Core].
@@ -95,7 +95,8 @@ public static class EventHandler {
== Camel Quarkus Core and Camel Main
-INFO: Before Camel Quarkus 1.8.0, `camel-quarkus-main` used to be a separate
artifact.
+NOTE: Before Camel Quarkus 1.8.0, `camel-quarkus-main` used to be a separate
artifact.
+
Since 1.8.0, all its functionality moved to `camel-quarkus-core`.
== Configuration by convention
diff --git a/docs/modules/ROOT/pages/user-guide/defining-camel-routes.adoc
b/docs/modules/ROOT/pages/user-guide/defining-camel-routes.adoc
index 6cc8743..52b7f73 100644
--- a/docs/modules/ROOT/pages/user-guide/defining-camel-routes.adoc
+++ b/docs/modules/ROOT/pages/user-guide/defining-camel-routes.adoc
@@ -84,7 +84,7 @@ Path globbing like `camel.main.routes-include-pattern =
*./routes.xml` currently
</routes>
----
-[WARN]
+[WARNING]
====
Spring XML with `<beans>` or Blueprint XML with `<blueprint>` elements are not
supported.
====
diff --git a/docs/modules/ROOT/pages/user-guide/dependency-management.adoc
b/docs/modules/ROOT/pages/user-guide/dependency-management.adoc
index c5bc0c5..510bd02 100644
--- a/docs/modules/ROOT/pages/user-guide/dependency-management.adoc
+++ b/docs/modules/ROOT/pages/user-guide/dependency-management.adoc
@@ -8,7 +8,7 @@ The easiest and most straightforward way to get the dependency
versions right is
It will produce a project with the `io.quarkus:quarkus-universe-bom` set up in
the `<depependencyManagement>` section
of your `pom.xml` file.
-[INFO]
+[NOTE]
====
BOM stands for "Bill of Materials" - it is a `pom.xml` whose main purpose is
to manage the versions of artifacts
so that end users importing the BOM in their projects do not need to care
which particular versions of the artifacts
diff --git a/docs/modules/ROOT/pages/user-guide/first-steps.adoc
b/docs/modules/ROOT/pages/user-guide/first-steps.adoc
index 3b61dbc..dcb2780 100644
--- a/docs/modules/ROOT/pages/user-guide/first-steps.adoc
+++ b/docs/modules/ROOT/pages/user-guide/first-steps.adoc
@@ -115,7 +115,7 @@ The application has three compile dependencies:
They are managed within the `camel-quarkus-bom` that is imported in
`<dependencyManagement>`.
-[INFO]
+[NOTE]
====
More about xref:user-guide/dependency-management.adoc[BOMs].
====