You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/09/25 10:55:32 UTC

[camel] branch master updated: Add in the documentation about the dependency inclusion

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new c9e9292  Add in the documentation about the dependency inclusion
     new 50d6d19  Merge pull request #3194 from omarsmak/dbz-mysql-docs-example-fix
c9e9292 is described below

commit c9e929231fee5819b7905ae18a232f6682124c5e
Author: Omar Al-Safi <om...@gmail.com>
AuthorDate: Wed Sep 25 12:52:58 2019 +0200

    Add in the documentation about the dependency inclusion
---
 .../camel-debezium/src/main/docs/debezium-component.adoc      | 11 +++++++++++
 examples/camel-example-debezium/README.adoc                   | 10 ++++++++++
 2 files changed, 21 insertions(+)

diff --git a/components/camel-debezium/src/main/docs/debezium-component.adoc b/components/camel-debezium/src/main/docs/debezium-component.adoc
index e300443..fcff15d 100644
--- a/components/camel-debezium/src/main/docs/debezium-component.adoc
+++ b/components/camel-debezium/src/main/docs/debezium-component.adoc
@@ -36,6 +36,17 @@ 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
 
 
diff --git a/examples/camel-example-debezium/README.adoc b/examples/camel-example-debezium/README.adoc
index 62c43c1..6ec4bce 100644
--- a/examples/camel-example-debezium/README.adoc
+++ b/examples/camel-example-debezium/README.adoc
@@ -49,6 +49,16 @@ USE dbzSink;
 
 === Build
 
+Due to licensing issues, you will need to add the dependency for `mysql-conenctor-java`, 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>
+------------------------------------------------------------
+
 You will need to compile this example first:
 
     $ mvn clean compile