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 2023/10/11 09:49:08 UTC

[camel-kamelets-examples] branch azure-schema-reg-doc created (now d587ada)

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

acosentino pushed a change to branch azure-schema-reg-doc
in repository https://gitbox.apache.org/repos/asf/camel-kamelets-examples.git


      at d587ada  Azure Schema Registry Example: Align docs to show the working example with Camel 4.x

This branch includes the following new commits:

     new d587ada  Azure Schema Registry Example: Align docs to show the working example with Camel 4.x

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-kamelets-examples] 01/01: Azure Schema Registry Example: Align docs to show the working example with Camel 4.x

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch azure-schema-reg-doc
in repository https://gitbox.apache.org/repos/asf/camel-kamelets-examples.git

commit d587adaae2aab276432294ec32cc70cf753277c4
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Oct 11 11:48:35 2023 +0200

    Azure Schema Registry Example: Align docs to show the working example with Camel 4.x
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 jbang/azure-eventhubs-kafka-azure-schema-registry/README.md | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/jbang/azure-eventhubs-kafka-azure-schema-registry/README.md b/jbang/azure-eventhubs-kafka-azure-schema-registry/README.md
index d12271d..53ed25e 100644
--- a/jbang/azure-eventhubs-kafka-azure-schema-registry/README.md
+++ b/jbang/azure-eventhubs-kafka-azure-schema-registry/README.md
@@ -54,13 +54,11 @@ mvn clean install
 ```
 then run:
 ```bash
-camel run kafka-log.yaml camel-kafka-3.22.0.jar --properties application.properties
+camel run kafka-log.yaml 
 ```
-> At the time of writing, there was a [problem](https://github.com/apache/camel-kamelets-examples/issues/21#issuecomment-1732603257) running this example with camel-kafka-4.0.0 so the example was developed using version 3.22.0, which can be found [here](https://repository.apache.org/content/groups/snapshots/org/apache/camel/camel-kafka/3.22.0-SNAPSHOT/)
 
 To run the example without JBang, but e.g. Spring Boot, You can export the route:
 ```bash
 camel export application.properties kafka-log.yaml --runtime=spring-boot --directory=code --gav com.acme.example:azure-sr:1.0.0
 ```
 And run as a regular Spring Boot application.
-> Using this approach, camel-kafka-4.0.0 works, and no dependencies need to be modified.