You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2019/10/21 17:24:39 UTC

[camel] 03/03: Polished

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.git

commit 61e89b466e9120b3dfa27ec314162321fde711e2
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Oct 21 19:20:35 2019 +0200

    Polished
---
 .../src/main/docs/debezium-component.adoc                 | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/components/camel-debezium/camel-debezium-component/src/main/docs/debezium-component.adoc b/components/camel-debezium/camel-debezium-component/src/main/docs/debezium-component.adoc
index 27cb8d2..a0eff9c 100644
--- a/components/camel-debezium/camel-debezium-component/src/main/docs/debezium-component.adoc
+++ b/components/camel-debezium/camel-debezium-component/src/main/docs/debezium-component.adoc
@@ -13,21 +13,20 @@ Maven users will need to add the following dependency to their `pom.xml`
 for this component.
 
 [source,xml]
-------------------------------------------------------------
+----
 <dependency>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-debezium</artifactId>
     <version>x.x.x</version>
     <!-- use the same version as your Camel core version -->
 </dependency>
-------------------------------------------------------------
+----
 
 == URI format
 
-[source,java]
+[source,text]
 ---------------------------
 debezium:connector-type[?options]
-
 ---------------------------
 
 == Supported Debezium Connectors
@@ -35,17 +34,15 @@ debezium:connector-type[?options]
 
 *Note:* Other Debezium connectors are _not_ supported at the moment.
 
-
 *Note:* Due to licensing issues, you will need to add the dependency for `mysql-conenctor-java` if you are using MySQL connector, just add the following to your POM file:
 [source,xml]
-------------------------------------------------------------
+----
 <dependency>
     <groupId>mysql</groupId>
     <artifactId>mysql-connector-java</artifactId>
     <version>8.0.15</version>
 </dependency>
-------------------------------------------------------------
-
+----
 
 == Options
 
@@ -253,6 +250,4 @@ from("debezium:[connectorType]?[options]])
     });
 ----
 
-
-
 *Important Note:* This component is a thin wrapper around Debezium Engine as mentioned, therefore before using this component in production, you need to understand how Debezium works and how configurations can reflect the expected behavior, especially in regards to https://debezium.io/documentation/reference/0.9/operations/embedded.html#_handling_failures[handling failures].