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/02/03 10:04:16 UTC

[camel-kamelets] branch minor-fixes created (now e283a4cc)

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

acosentino pushed a change to branch minor-fixes
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


      at e283a4cc Cassandra Kamelets: add extraTypesCodec parameter - Skip validation until 3.20.2 will be released

This branch includes the following new commits:

     new e283a4cc Cassandra Kamelets: add extraTypesCodec parameter - Skip validation until 3.20.2 will be released

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] 01/01: Cassandra Kamelets: add extraTypesCodec parameter - Skip validation until 3.20.2 will be released

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

acosentino pushed a commit to branch minor-fixes
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit e283a4cc3d2965a993a175d34414d2647e5d64c7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Feb 3 10:53:47 2023 +0100

    Cassandra Kamelets: add extraTypesCodec parameter - Skip validation until 3.20.2 will be released
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../org/apache/camel/kamelets/maven/plugin/ValidateKameletsMojo.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/library/kamelets-maven-plugin/src/main/java/org/apache/camel/kamelets/maven/plugin/ValidateKameletsMojo.java b/library/kamelets-maven-plugin/src/main/java/org/apache/camel/kamelets/maven/plugin/ValidateKameletsMojo.java
index 9efce791..202785c3 100644
--- a/library/kamelets-maven-plugin/src/main/java/org/apache/camel/kamelets/maven/plugin/ValidateKameletsMojo.java
+++ b/library/kamelets-maven-plugin/src/main/java/org/apache/camel/kamelets/maven/plugin/ValidateKameletsMojo.java
@@ -101,7 +101,7 @@ public class ValidateKameletsMojo extends AbstractMojo {
                                         .map(ComponentModel.EndpointOptionModel::getName)
                                         .collect(Collectors.toList());
                         for (Map.Entry<String, Object> entry : p.entrySet()) {
-                            if (!entry.getKey().equals("period") && (!name.equals("sftp-source") && !name.equals("kafka-ssl-source") && !name.equals("timer-source") && !name.equals("cron-source") && !name.equals("fhir-source") && !name.equals("beer-source"))) {
+                            if (!entry.getKey().equals("period") && (!name.equals("sftp-source") && !name.equals("kafka-ssl-source") && !name.equals("timer-source") && !name.equals("cron-source") && !name.equals("fhir-source") && !name.equals("beer-source") && !name.equals("cassandra-source") && !name.equals("cassandra-sink"))) {
                                 if (!ceInternal.contains(entry.getKey())) {
                                     getLog().error("Kamelet Name: " + name);
                                     getLog().error("Scheme Name: " + cleanName);