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 2024/01/08 10:06:56 UTC

(camel-kafka-connector) branch sbom-gen-release-4.0.x created (now 9e69e1f17)

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

acosentino pushed a change to branch sbom-gen-release-4.0.x
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


      at 9e69e1f17 Add SBOM generation profile and add it to release

This branch includes the following new commits:

     new 56fd774f4 Add SBOM generation profile and add it to release
     new 2a59e24bc Add SBOM generation profile and add it to release
     new a51340f91 Add SBOM generation profile and add it to release
     new 9e69e1f17 Add SBOM generation profile and add it to release

The 4 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-kafka-connector) 01/04: Add SBOM generation profile and add it to release

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

acosentino pushed a commit to branch sbom-gen-release-4.0.x
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit 56fd774f43e276800a226e07bcc84f912ccd4874
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jan 8 10:39:26 2024 +0100

    Add SBOM generation profile and add it to release
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 pom.xml | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/pom.xml b/pom.xml
index 7eac5f6d8..4018144b8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,6 +44,7 @@
         <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
         <maven-source-plugin.version>3.1.0</maven-source-plugin.version>
         <maven-checksum-maven-plugin.version>1.7</maven-checksum-maven-plugin.version>
+        <cyclonedx-maven-plugin-version>2.7.10</cyclonedx-maven-plugin-version>
     </properties>
 
     <modules>
@@ -371,6 +372,48 @@
                             </execution>
                         </executions>
                     </plugin>
+                    <plugin>
+                        <groupId>org.cyclonedx</groupId>
+                        <artifactId>cyclonedx-maven-plugin</artifactId>
+                        <version>${cyclonedx-maven-plugin-version}</version>
+                        <inherited>false</inherited>
+                        <executions>
+                            <execution>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>makeAggregateBom</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                        <configuration>
+                            <outputName>${project.artifactId}-${project.version}-sbom</outputName>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
+            <id>sbom</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.cyclonedx</groupId>
+                        <artifactId>cyclonedx-maven-plugin</artifactId>
+                        <version>${cyclonedx-maven-plugin-version}</version>
+                        <inherited>false</inherited>
+                        <configuration>
+                            <outputName>camel-sbom</outputName>
+                            <outputDirectory>${project.basedir}/camel-sbom/</outputDirectory>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>makeAggregateBom</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
                 </plugins>
             </build>
         </profile>


(camel-kafka-connector) 02/04: Add SBOM generation profile and add it to release

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

acosentino pushed a commit to branch sbom-gen-release-4.0.x
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit 2a59e24bce84ecdc478007d526d20153e2e5455e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jan 8 10:55:07 2024 +0100

    Add SBOM generation profile and add it to release
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 pom.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4018144b8..250f572c5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,4 +1,3 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <!--
 
     Licensed to the Apache Software Foundation (ASF) under one or more
@@ -403,7 +402,7 @@
                         <inherited>false</inherited>
                         <configuration>
                             <outputName>camel-sbom</outputName>
-                            <outputDirectory>${project.basedir}/camel-sbom/</outputDirectory>
+                            <outputDirectory>${project.basedir}/camel-kafka-connector-sbom/</outputDirectory>
                         </configuration>
                         <executions>
                             <execution>


(camel-kafka-connector) 03/04: Add SBOM generation profile and add it to release

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

acosentino pushed a commit to branch sbom-gen-release-4.0.x
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit a51340f916eebb3eb2ed9ec5bf4c97313aa48f5e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jan 8 10:56:29 2024 +0100

    Add SBOM generation profile and add it to release
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pom.xml b/pom.xml
index 250f572c5..8a93431f2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
 
     Licensed to the Apache Software Foundation (ASF) under one or more


(camel-kafka-connector) 04/04: Add SBOM generation profile and add it to release

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

acosentino pushed a commit to branch sbom-gen-release-4.0.x
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit 9e69e1f173fdc4841c0079832533d9bc4e9d95bc
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jan 8 11:06:30 2024 +0100

    Add SBOM generation profile and add it to release
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../camel-aws-cloudtrail-source-source.json        |     2 +-
 .../connectors/camel-aws-cloudwatch-sink-sink.json |     2 +-
 .../connectors/camel-aws-ddb-sink-sink.json        |     2 +-
 .../camel-aws-ddb-streams-source-source.json       |     2 +-
 .../connectors/camel-aws-ec2-sink-sink.json        |     2 +-
 .../camel-aws-eventbridge-sink-sink.json           |     2 +-
 .../camel-aws-kinesis-firehose-sink-sink.json      |     2 +-
 .../connectors/camel-aws-kinesis-sink-sink.json    |     2 +-
 .../camel-aws-kinesis-source-source.json           |     2 +-
 .../connectors/camel-aws-lambda-sink-sink.json     |     2 +-
 .../connectors/camel-aws-redshift-sink-sink.json   |     2 +-
 .../camel-aws-redshift-source-source.json          |     2 +-
 .../connectors/camel-aws-s3-cdc-source-source.json |     2 +-
 .../connectors/camel-aws-s3-sink-sink.json         |     2 +-
 .../connectors/camel-aws-s3-source-source.json     |     2 +-
 .../camel-aws-s3-streaming-upload-sink-sink.json   |     2 +-
 .../camel-aws-secrets-manager-sink-sink.json       |     2 +-
 .../connectors/camel-aws-ses-sink-sink.json        |     2 +-
 .../connectors/camel-aws-sns-fifo-sink-sink.json   |     2 +-
 .../connectors/camel-aws-sns-sink-sink.json        |     2 +-
 .../connectors/camel-aws-sqs-batch-sink-sink.json  |     2 +-
 .../connectors/camel-aws-sqs-fifo-sink-sink.json   |     2 +-
 .../connectors/camel-aws-sqs-sink-sink.json        |     2 +-
 .../connectors/camel-aws-sqs-source-source.json    |     2 +-
 .../resources/connectors/camel-aws2-iam-sink.json  |     2 +-
 .../resources/connectors/camel-aws2-kms-sink.json  |     2 +-
 .../connectors/camel-azure-cosmosdb-sink-sink.json |     4 +-
 .../camel-azure-cosmosdb-source-source.json        |     2 +-
 .../camel-azure-eventhubs-sink-sink.json           |     2 +-
 .../camel-azure-eventhubs-source-source.json       |     2 +-
 .../camel-azure-functions-sink-sink.json           |     2 +-
 .../camel-azure-servicebus-sink-sink.json          |     2 +-
 .../camel-azure-servicebus-source-source.json      |     2 +-
 ...camel-azure-storage-blob-cdc-source-source.json |     2 +-
 ...zure-storage-blob-changefeed-source-source.json |     2 +-
 .../camel-azure-storage-blob-sink-sink.json        |     2 +-
 .../camel-azure-storage-blob-source-source.json    |     2 +-
 .../camel-azure-storage-datalake-sink-sink.json    |     4 +-
 ...camel-azure-storage-datalake-source-source.json |     4 +-
 .../camel-azure-storage-queue-sink-sink.json       |     2 +-
 .../camel-azure-storage-queue-source-source.json   |     2 +-
 .../connectors/camel-beer-source-source.json       |     2 +-
 .../connectors/camel-bitcoin-source-source.json    |     2 +-
 .../connectors/camel-cassandra-sink-sink.json      |     2 +-
 .../connectors/camel-cassandra-source-source.json  |     2 +-
 .../resources/connectors/camel-ceph-sink-sink.json |     2 +-
 .../connectors/camel-ceph-source-source.json       |     2 +-
 .../camel-chuck-norris-source-source.json          |     2 +-
 .../connectors/camel-couchbase-sink-sink.json      |     2 +-
 .../connectors/camel-cron-source-source.json       |     2 +-
 .../resources/connectors/camel-cxf-sink.json       |     2 +-
 .../resources/connectors/camel-cxf-source.json     |     2 +-
 .../resources/connectors/camel-cxfrs-sink.json     |     2 +-
 .../resources/connectors/camel-cxfrs-source.json   |     2 +-
 .../connectors/camel-dropbox-sink-sink.json        |     2 +-
 .../connectors/camel-dropbox-source-source.json    |     2 +-
 .../connectors/camel-earthquake-source-source.json |     2 +-
 .../camel-elasticsearch-index-sink-sink.json       |     4 +-
 .../camel-elasticsearch-search-source-source.json  |     4 +-
 .../resources/connectors/camel-exec-sink-sink.json |     2 +-
 .../resources/connectors/camel-fhir-sink-sink.json |     2 +-
 .../connectors/camel-fhir-source-source.json       |     2 +-
 .../resources/connectors/camel-file-sink.json      |     2 +-
 .../resources/connectors/camel-file-source.json    |     2 +-
 .../connectors/camel-file-watch-source-source.json |     2 +-
 .../resources/connectors/camel-ftp-sink-sink.json  |     2 +-
 .../connectors/camel-ftp-source-source.json        |     2 +-
 .../resources/connectors/camel-ftps-sink-sink.json |     2 +-
 .../connectors/camel-ftps-source-source.json       |     2 +-
 .../camel-github-commit-source-source.json         |     2 +-
 .../camel-github-event-source-source.json          |     2 +-
 ...l-github-pullrequest-comment-source-source.json |     2 +-
 .../camel-github-pullrequest-source-source.json    |     2 +-
 .../connectors/camel-github-tag-source-source.json |     2 +-
 .../camel-google-bigquery-sink-sink.json           |     2 +-
 .../camel-google-calendar-source-source.json       |     2 +-
 .../camel-google-functions-sink-sink.json          |     2 +-
 .../camel-google-mail-source-source.json           |     2 +-
 .../connectors/camel-google-pubsub-sink-sink.json  |     2 +-
 .../camel-google-pubsub-source-source.json         |     2 +-
 .../camel-google-sheets-source-source.json         |     2 +-
 .../camel-google-storage-cdc-source-source.json    |     2 +-
 .../connectors/camel-google-storage-sink-sink.json |     2 +-
 .../camel-google-storage-source-source.json        |     2 +-
 .../connectors/camel-graphql-sink-sink.json        |     4 +-
 .../resources/connectors/camel-hdfs-sink.json      |     2 +-
 .../resources/connectors/camel-hdfs-source.json    |     2 +-
 .../connectors/camel-http-secured-sink-sink.json   |     2 +-
 .../camel-http-secured-source-source.json          |     2 +-
 .../resources/connectors/camel-http-sink-sink.json |     2 +-
 .../connectors/camel-http-source-source.json       |     2 +-
 .../resources/connectors/camel-https-sink.json     |     2 +-
 .../connectors/camel-infinispan-sink-sink.json     |     2 +-
 .../connectors/camel-infinispan-source-source.json |     2 +-
 .../resources/connectors/camel-jdbc-sink.json      |     2 +-
 .../camel-jira-add-comment-sink-sink.json          |     2 +-
 .../connectors/camel-jira-add-issue-sink-sink.json |     2 +-
 .../connectors/camel-jira-oauth-source-source.json |     2 +-
 .../connectors/camel-jira-source-source.json       |     2 +-
 .../camel-jira-transition-issue-sink-sink.json     |     2 +-
 .../camel-jira-update-issue-sink-sink.json         |     2 +-
 .../connectors/camel-jms-amqp-10-sink-sink.json    |     2 +-
 .../camel-jms-amqp-10-source-source.json           |     2 +-
 .../camel-jms-apache-artemis-sink-sink.json        |     2 +-
 .../camel-jms-apache-artemis-source-source.json    |     2 +-
 .../connectors/camel-jms-ibm-mq-sink-sink.json     |     2 +-
 .../connectors/camel-jms-ibm-mq-source-source.json |     2 +-
 .../camel-kafka-not-secured-sink-sink.json         |     2 +-
 .../camel-kafka-not-secured-source-source.json     |     2 +-
 .../connectors/camel-kafka-scram-sink-sink.json    |     4 +-
 .../camel-kafka-scram-source-source.json           |     4 +-
 .../connectors/camel-kafka-sink-sink.json          |     2 +-
 .../connectors/camel-kafka-source-source.json      |     2 +-
 .../connectors/camel-kafka-ssl-sink-sink.json      |     2 +-
 .../connectors/camel-kafka-ssl-source-source.json  |     2 +-
 .../camel-kubernetes-namespaces-source-source.json |     2 +-
 .../camel-kubernetes-nodes-source-source.json      |     2 +-
 .../camel-kubernetes-pods-source-source.json       |     2 +-
 .../resources/connectors/camel-log-sink-sink.json  |     2 +-
 .../connectors/camel-mail-imap-source-source.json  |     2 +-
 .../resources/connectors/camel-mail-sink-sink.json |     2 +-
 .../connectors/camel-mariadb-sink-sink.json        |     2 +-
 .../connectors/camel-mariadb-source-source.json    |     2 +-
 .../connectors/camel-minio-sink-sink.json          |     2 +-
 .../connectors/camel-minio-source-source.json      |     2 +-
 ...camel-mongodb-changes-stream-source-source.json |     2 +-
 .../connectors/camel-mongodb-sink-sink.json        |     2 +-
 .../connectors/camel-mongodb-source-source.json    |     2 +-
 .../resources/connectors/camel-mqtt-sink-sink.json |     2 +-
 .../connectors/camel-mqtt-source-source.json       |     2 +-
 .../connectors/camel-mqtt5-sink-sink.json          |     2 +-
 .../connectors/camel-mqtt5-source-source.json      |     2 +-
 .../connectors/camel-mysql-sink-sink.json          |     2 +-
 .../connectors/camel-mysql-source-source.json      |     2 +-
 .../resources/connectors/camel-nats-sink-sink.json |     2 +-
 .../connectors/camel-nats-source-source.json       |     2 +-
 .../connectors/camel-netty-http-sink.json          |     2 +-
 .../connectors/camel-netty-http-source.json        |     2 +-
 .../resources/connectors/camel-netty-sink.json     |     2 +-
 .../resources/connectors/camel-netty-source.json   |     2 +-
 .../camel-opensearch-index-sink-sink.json          |     4 +-
 .../camel-opensearch-search-source-source.json     |     4 +-
 .../camel-oracle-database-sink-sink.json           |     2 +-
 .../camel-oracle-database-source-source.json       |     2 +-
 .../connectors/camel-postgresql-sink-sink.json     |     2 +-
 .../connectors/camel-postgresql-source-source.json |     2 +-
 .../connectors/camel-pulsar-sink-sink.json         |     2 +-
 .../connectors/camel-pulsar-source-source.json     |     2 +-
 .../connectors/camel-redis-sink-sink.json          |     2 +-
 .../connectors/camel-redis-source-source.json      |     2 +-
 .../connectors/camel-rest-openapi-sink-sink.json   |     2 +-
 ...amel-salesforce-composite-upsert-sink-sink.json |     4 +-
 .../camel-salesforce-create-sink-sink.json         |     2 +-
 .../camel-salesforce-delete-sink-sink.json         |     2 +-
 .../connectors/camel-salesforce-source-source.json |     2 +-
 .../camel-salesforce-update-sink-sink.json         |     2 +-
 .../resources/connectors/camel-scp-sink-sink.json  |     2 +-
 .../resources/connectors/camel-sftp-sink-sink.json |     2 +-
 .../connectors/camel-sftp-source-source.json       |     2 +-
 .../resources/connectors/camel-sjms2-sink.json     |     2 +-
 .../resources/connectors/camel-sjms2-source.json   |     2 +-
 .../connectors/camel-slack-sink-sink.json          |     2 +-
 .../connectors/camel-slack-source-source.json      |     2 +-
 .../connectors/camel-splunk-hec-sink-sink.json     |     2 +-
 .../connectors/camel-splunk-sink-sink.json         |     2 +-
 .../connectors/camel-splunk-source-source.json     |     2 +-
 .../connectors/camel-sqlserver-sink-sink.json      |     2 +-
 .../connectors/camel-sqlserver-source-source.json  |     2 +-
 .../resources/connectors/camel-ssh-sink-sink.json  |     2 +-
 .../connectors/camel-ssh-source-source.json        |     2 +-
 .../connectors/camel-telegram-sink-sink.json       |     2 +-
 .../connectors/camel-telegram-source-source.json   |     2 +-
 .../connectors/camel-timer-source-source.json      |     2 +-
 .../camel-twitter-directmessage-source-source.json |     2 +-
 .../camel-twitter-search-source-source.json        |     2 +-
 .../camel-twitter-timeline-source-source.json      |     2 +-
 .../connectors/camel-webhook-source-source.json    |     2 +-
 .../connectors/camel-wttrin-source-source.json     |     2 +-
 camel-kafka-connector-sbom/camel-sbom.json         | 89058 +++++++++++++++++++
 camel-kafka-connector-sbom/camel-sbom.xml          | 35933 ++++++++
 .../camel-aws-cloudtrail-source-source.json        |     2 +-
 .../resources/camel-aws-cloudwatch-sink-sink.json  |     2 +-
 .../resources/camel-aws-ddb-sink-sink.json         |     2 +-
 .../camel-aws-ddb-streams-source-source.json       |     2 +-
 .../resources/camel-aws-ec2-sink-sink.json         |     2 +-
 .../resources/camel-aws-eventbridge-sink-sink.json |     2 +-
 .../camel-aws-kinesis-firehose-sink-sink.json      |     2 +-
 .../resources/camel-aws-kinesis-sink-sink.json     |     2 +-
 .../resources/camel-aws-kinesis-source-source.json |     2 +-
 .../resources/camel-aws-lambda-sink-sink.json      |     2 +-
 .../resources/camel-aws-redshift-sink-sink.json    |     2 +-
 .../camel-aws-redshift-source-source.json          |     2 +-
 .../resources/camel-aws-s3-cdc-source-source.json  |     2 +-
 .../resources/camel-aws-s3-sink-sink.json          |     2 +-
 .../resources/camel-aws-s3-source-source.json      |     2 +-
 .../camel-aws-s3-streaming-upload-sink-sink.json   |     2 +-
 .../camel-aws-secrets-manager-sink-sink.json       |     2 +-
 .../resources/camel-aws-ses-sink-sink.json         |     2 +-
 .../resources/camel-aws-sns-fifo-sink-sink.json    |     2 +-
 .../resources/camel-aws-sns-sink-sink.json         |     2 +-
 .../resources/camel-aws-sqs-batch-sink-sink.json   |     2 +-
 .../resources/camel-aws-sqs-fifo-sink-sink.json    |     2 +-
 .../resources/camel-aws-sqs-sink-sink.json         |     2 +-
 .../resources/camel-aws-sqs-source-source.json     |     2 +-
 .../generated/resources/camel-aws2-iam-sink.json   |     2 +-
 .../generated/resources/camel-aws2-kms-sink.json   |     2 +-
 .../resources/camel-azure-cosmosdb-sink-sink.json  |     4 +-
 .../camel-azure-cosmosdb-source-source.json        |     2 +-
 .../resources/camel-azure-eventhubs-sink-sink.json |     2 +-
 .../camel-azure-eventhubs-source-source.json       |     2 +-
 .../resources/camel-azure-functions-sink-sink.json |     2 +-
 .../camel-azure-servicebus-sink-sink.json          |     2 +-
 .../camel-azure-servicebus-source-source.json      |     2 +-
 ...camel-azure-storage-blob-cdc-source-source.json |     2 +-
 ...zure-storage-blob-changefeed-source-source.json |     2 +-
 .../camel-azure-storage-blob-sink-sink.json        |     2 +-
 .../camel-azure-storage-blob-source-source.json    |     2 +-
 .../camel-azure-storage-datalake-sink-sink.json    |     4 +-
 ...camel-azure-storage-datalake-source-source.json |     4 +-
 .../camel-azure-storage-queue-sink-sink.json       |     2 +-
 .../camel-azure-storage-queue-source-source.json   |     2 +-
 .../resources/camel-beer-source-source.json        |     2 +-
 .../resources/camel-bitcoin-source-source.json     |     2 +-
 .../resources/camel-cassandra-sink-sink.json       |     2 +-
 .../resources/camel-cassandra-source-source.json   |     2 +-
 .../generated/resources/camel-ceph-sink-sink.json  |     2 +-
 .../resources/camel-ceph-source-source.json        |     2 +-
 .../camel-chuck-norris-source-source.json          |     2 +-
 .../resources/camel-couchbase-sink-sink.json       |     2 +-
 .../resources/camel-cron-source-source.json        |     2 +-
 .../src/generated/resources/camel-cxf-sink.json    |     2 +-
 .../src/generated/resources/camel-cxf-source.json  |     2 +-
 .../src/generated/resources/camel-cxfrs-sink.json  |     2 +-
 .../generated/resources/camel-cxfrs-source.json    |     2 +-
 .../resources/camel-dropbox-sink-sink.json         |     2 +-
 .../resources/camel-dropbox-source-source.json     |     2 +-
 .../resources/camel-earthquake-source-source.json  |     2 +-
 .../camel-elasticsearch-index-sink-sink.json       |     4 +-
 .../camel-elasticsearch-search-source-source.json  |     4 +-
 .../generated/resources/camel-exec-sink-sink.json  |     2 +-
 .../generated/resources/camel-fhir-sink-sink.json  |     2 +-
 .../resources/camel-fhir-source-source.json        |     2 +-
 .../src/generated/resources/camel-file-sink.json   |     2 +-
 .../src/generated/resources/camel-file-source.json |     2 +-
 .../resources/camel-file-watch-source-source.json  |     2 +-
 .../generated/resources/camel-ftp-sink-sink.json   |     2 +-
 .../resources/camel-ftp-source-source.json         |     2 +-
 .../generated/resources/camel-ftps-sink-sink.json  |     2 +-
 .../resources/camel-ftps-source-source.json        |     2 +-
 .../camel-github-commit-source-source.json         |     2 +-
 .../camel-github-event-source-source.json          |     2 +-
 ...l-github-pullrequest-comment-source-source.json |     2 +-
 .../camel-github-pullrequest-source-source.json    |     2 +-
 .../resources/camel-github-tag-source-source.json  |     2 +-
 .../resources/camel-google-bigquery-sink-sink.json |     2 +-
 .../camel-google-calendar-source-source.json       |     2 +-
 .../camel-google-functions-sink-sink.json          |     2 +-
 .../resources/camel-google-mail-source-source.json |     2 +-
 .../resources/camel-google-pubsub-sink-sink.json   |     2 +-
 .../camel-google-pubsub-source-source.json         |     2 +-
 .../camel-google-sheets-source-source.json         |     2 +-
 .../camel-google-storage-cdc-source-source.json    |     2 +-
 .../resources/camel-google-storage-sink-sink.json  |     2 +-
 .../camel-google-storage-source-source.json        |     2 +-
 .../resources/camel-graphql-sink-sink.json         |     4 +-
 .../src/generated/resources/camel-hdfs-sink.json   |     2 +-
 .../src/generated/resources/camel-hdfs-source.json |     2 +-
 .../resources/camel-http-secured-sink-sink.json    |     2 +-
 .../camel-http-secured-source-source.json          |     2 +-
 .../generated/resources/camel-http-sink-sink.json  |     2 +-
 .../resources/camel-http-source-source.json        |     2 +-
 .../src/generated/resources/camel-https-sink.json  |     2 +-
 .../resources/camel-infinispan-sink-sink.json      |     2 +-
 .../resources/camel-infinispan-source-source.json  |     2 +-
 .../src/generated/resources/camel-jdbc-sink.json   |     2 +-
 .../camel-jira-add-comment-sink-sink.json          |     2 +-
 .../resources/camel-jira-add-issue-sink-sink.json  |     2 +-
 .../resources/camel-jira-oauth-source-source.json  |     2 +-
 .../resources/camel-jira-source-source.json        |     2 +-
 .../camel-jira-transition-issue-sink-sink.json     |     2 +-
 .../camel-jira-update-issue-sink-sink.json         |     2 +-
 .../resources/camel-jms-amqp-10-sink-sink.json     |     2 +-
 .../resources/camel-jms-amqp-10-source-source.json |     2 +-
 .../camel-jms-apache-artemis-sink-sink.json        |     2 +-
 .../camel-jms-apache-artemis-source-source.json    |     2 +-
 .../resources/camel-jms-ibm-mq-sink-sink.json      |     2 +-
 .../resources/camel-jms-ibm-mq-source-source.json  |     2 +-
 .../camel-kafka-not-secured-sink-sink.json         |     2 +-
 .../camel-kafka-not-secured-source-source.json     |     2 +-
 .../resources/camel-kafka-scram-sink-sink.json     |     4 +-
 .../resources/camel-kafka-scram-source-source.json |     4 +-
 .../generated/resources/camel-kafka-sink-sink.json |     2 +-
 .../resources/camel-kafka-source-source.json       |     2 +-
 .../resources/camel-kafka-ssl-sink-sink.json       |     2 +-
 .../resources/camel-kafka-ssl-source-source.json   |     2 +-
 .../camel-kubernetes-namespaces-source-source.json |     2 +-
 .../camel-kubernetes-nodes-source-source.json      |     2 +-
 .../camel-kubernetes-pods-source-source.json       |     2 +-
 .../generated/resources/camel-log-sink-sink.json   |     2 +-
 .../resources/camel-mail-imap-source-source.json   |     2 +-
 .../generated/resources/camel-mail-sink-sink.json  |     2 +-
 .../resources/camel-mariadb-sink-sink.json         |     2 +-
 .../resources/camel-mariadb-source-source.json     |     2 +-
 .../generated/resources/camel-minio-sink-sink.json |     2 +-
 .../resources/camel-minio-source-source.json       |     2 +-
 .../pom.xml                                        |     8 +-
 ...camel-mongodb-changes-stream-source-source.json |     2 +-
 .../camel-mongodb-sink-kafka-connector/pom.xml     |     8 +-
 .../resources/camel-mongodb-sink-sink.json         |     2 +-
 .../camel-mongodb-source-kafka-connector/pom.xml   |     8 +-
 .../resources/camel-mongodb-source-source.json     |     2 +-
 .../generated/resources/camel-mqtt-sink-sink.json  |     2 +-
 .../resources/camel-mqtt-source-source.json        |     2 +-
 .../generated/resources/camel-mqtt5-sink-sink.json |     2 +-
 .../resources/camel-mqtt5-source-source.json       |     2 +-
 .../generated/resources/camel-mysql-sink-sink.json |     2 +-
 .../resources/camel-mysql-source-source.json       |     2 +-
 .../generated/resources/camel-nats-sink-sink.json  |     2 +-
 .../resources/camel-nats-source-source.json        |     2 +-
 .../generated/resources/camel-netty-http-sink.json |     2 +-
 .../resources/camel-netty-http-source.json         |     2 +-
 .../src/generated/resources/camel-netty-sink.json  |     2 +-
 .../generated/resources/camel-netty-source.json    |     2 +-
 .../camel-opensearch-index-sink-sink.json          |     4 +-
 .../camel-opensearch-search-source-source.json     |     4 +-
 .../resources/camel-oracle-database-sink-sink.json |     2 +-
 .../camel-oracle-database-source-source.json       |     2 +-
 .../resources/camel-postgresql-sink-sink.json      |     2 +-
 .../resources/camel-postgresql-source-source.json  |     2 +-
 .../resources/camel-pulsar-sink-sink.json          |     2 +-
 .../resources/camel-pulsar-source-source.json      |     2 +-
 .../generated/resources/camel-redis-sink-sink.json |     2 +-
 .../resources/camel-redis-source-source.json       |     2 +-
 .../resources/camel-rest-openapi-sink-sink.json    |     2 +-
 ...amel-salesforce-composite-upsert-sink-sink.json |     4 +-
 .../camel-salesforce-create-sink-sink.json         |     2 +-
 .../camel-salesforce-delete-sink-sink.json         |     2 +-
 .../resources/camel-salesforce-source-source.json  |     2 +-
 .../camel-salesforce-update-sink-sink.json         |     2 +-
 .../generated/resources/camel-scp-sink-sink.json   |     2 +-
 .../generated/resources/camel-sftp-sink-sink.json  |     2 +-
 .../resources/camel-sftp-source-source.json        |     2 +-
 .../src/generated/resources/camel-sjms2-sink.json  |     2 +-
 .../generated/resources/camel-sjms2-source.json    |     2 +-
 .../generated/resources/camel-slack-sink-sink.json |     2 +-
 .../resources/camel-slack-source-source.json       |     2 +-
 .../resources/camel-splunk-hec-sink-sink.json      |     2 +-
 .../resources/camel-splunk-sink-sink.json          |     2 +-
 .../resources/camel-splunk-source-source.json      |     2 +-
 .../resources/camel-sqlserver-sink-sink.json       |     2 +-
 .../resources/camel-sqlserver-source-source.json   |     2 +-
 .../generated/resources/camel-ssh-sink-sink.json   |     2 +-
 .../resources/camel-ssh-source-source.json         |     2 +-
 .../resources/camel-telegram-sink-sink.json        |     2 +-
 .../resources/camel-telegram-source-source.json    |     2 +-
 .../resources/camel-timer-source-source.json       |     2 +-
 .../camel-twitter-directmessage-source-source.json |     2 +-
 .../camel-twitter-search-source-source.json        |     2 +-
 .../camel-twitter-timeline-source-source.json      |     2 +-
 .../resources/camel-webhook-source-source.json     |     2 +-
 .../resources/camel-wttrin-source-source.json      |     2 +-
 361 files changed, 125381 insertions(+), 390 deletions(-)

diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-cloudtrail-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-cloudtrail-source-source.json
index ca23edf48..f78c39814 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-cloudtrail-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-cloudtrail-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-cloudtrail-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from an AWS Cloudtrail.\n\nThe basic authentication method for the Cloudtrail service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-cloudwatch-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-cloudwatch-sink-sink.json
index 1f0297aad..6c2dd48e1 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-cloudwatch-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-cloudwatch-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-cloudwatch-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to Amazon CloudWatch metrics.\n\nThe basic authentication method for the AWS CloudWatch metrics service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the CloudWatch client loads the credentials through this provider and doesn't use the basic authentication method.\n\nYou can set the following properties in the header:\n\n`m [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ddb-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ddb-sink-sink.json
index aa6e1a65f..c9a528255 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ddb-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ddb-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-ddb-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to Amazon DynamoDB. The sent data inserts, updates, or deletes an item on the specified AWS DynamoDB table.\n\nThe basic authentication method for the AWS DynamoDB service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the DynamoDB client loads the credentials through this provider and doesn't use the basic authentication me [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ddb-streams-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ddb-streams-source-source.json
index b5a7af7d0..fb0b8565a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ddb-streams-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ddb-streams-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-ddb-streams-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive events from Amazon DynamoDB Streams.\n\nThe basic authentication method for the AWS DynamoDB Streams service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the DynamoDB Streams client loads the credentials through this provider and doesn't use the basic authentication method."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ec2-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ec2-sink-sink.json
index 4463e49ff..50f8f2ca8 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ec2-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ec2-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-ec2-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Check the status of EC2 instances\n\nAccess Key\/Secret Key are the basic method for authenticating to the AWS EC2 Service. These parameters are optional because the Kamelet provides the 'useDefaultCredentialsProvider'.\n\nWhen using a default Credentials Provider the EC2 client will load the credentials through this provider and won't use the static credential. This is reason for not having the access key and secret key as mandatory parameter for this Kamelet.\n\nThe K [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-eventbridge-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-eventbridge-sink-sink.json
index 8a9d1f142..89e40d895 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-eventbridge-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-eventbridge-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-eventbridge-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send events to an Amazon Eventbridge Eventbus.\n\nThe basic authentication method for the Eventbridge service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the Eventbridge client loads the credentials through this provider and doesn't use the basic authentication method.\n\nIn the headers, you need to set the `resources-arn` \/ `ce-r [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-firehose-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-firehose-sink-sink.json
index 751a54878..b02916334 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-firehose-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-firehose-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-kinesis-firehose-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send message to an AWS Kinesis Firehose Stream\n\nAccess Key\/Secret Key are the basic method for authenticating to the AWS Kinesis Firehose Service. These parameters are optional because the Kamelet provides the 'useDefaultCredentialsProvider'.\n\nWhen using a default Credentials Provider the Kinesis Firehose client will load the credentials through this provider and won't use the static credential. This is reason for not having the access key and secret key as mandato [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-sink-sink.json
index aea4e3461..b3428f0f4 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-kinesis-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to AWS Kinesis.\n\nThe basic authentication method for the Kinesis service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the Kinesis client loads the credentials through this provider and doesn't use the basic authentication method.\n\nIn the header, you can optionally set the `file` \/ `ce-partition` property to set the Ki [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-source-source.json
index 3b7840db9..281720837 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-kinesis-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-kinesis-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from AWS Kinesis.\n\nThe basic authentication method for the Kinesis service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the Kinesis client loads the credentials through this provider and doesn't use the basic authentication method.\n\nTwo headers will be duplicated with different names for clarity at sink level, Camel [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-lambda-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-lambda-sink-sink.json
index cf20038af..993a7a660 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-lambda-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-lambda-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-lambda-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send a payload to an AWS Lambda function.\n\nThe basic authentication method for the Lambda service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the Lambda client loads the credentials through this provider and doesn't use the basic authentication method."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-redshift-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-redshift-sink-sink.json
index bdd4f40b0..0aedf5b4a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-redshift-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-redshift-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-redshift-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to an AWS Redshift Database.\n\nThis Kamelet expects a JSON-formatted body. Use key:value pairs to map the JSON fields and parameters. For example, here is a query:\n\n'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'\n\nHere is example input for the example query:\n\n'{ \"username\":\"oscerd\", \"city\":\"Rome\"}'"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-redshift-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-redshift-source-source.json
index 09095d552..45e10eadf 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-redshift-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-redshift-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-redshift-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Query data from an AWS RedShift Database."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-cdc-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-cdc-source-source.json
index 6f0f469ea..5baddc8ee 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-cdc-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-cdc-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-s3-cdc-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from AWS SQS subscribed to Eventbridge Bus reporting events related to an S3 bucket or multiple buckets.\nAccess Key\/Secret Key are the basic method for authenticating to the AWS SQS Service.\nTo use this Kamelet you'll need to set up Eventbridge on your bucket and subscribe Eventbridge bus to an SQS Queue.\nFor doing this you'll need to enable Evenbridge notification on your bucket and creating a rule on Eventbridge console related to all the events on S3 [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-sink-sink.json
index 88847890d..d9bdad23a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-s3-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Upload data to an Amazon S3 Bucket.\n\nThe basic authentication method for the S3 service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the S3 client loads the credentials through this provider and doesn't use the basic authentication method.\n\nIn the header, you can optionally set the `file` \/ `ce-partition` property to specify th [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-source-source.json
index f4565e918..82e1fa5b9 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-s3-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from an Amazon S3 Bucket.\n\nThe basic authentication method for the S3 service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the S3 client loads the credentials through this provider and doesn't use the basic authentication method.\n\nTwo headers will be duplicated with different names for clarity at sink level, CamelAw [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-streaming-upload-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-streaming-upload-sink-sink.json
index 24bc6c01b..7de80b9bc 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-streaming-upload-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-s3-streaming-upload-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-s3-streaming-upload-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Upload data to AWS S3 in streaming upload mode.\n\nAccess Key\/Secret Key are the basic method for authenticating to the AWS S3 Service. These parameters are optional because the Kamelet provides the 'useDefaultCredentialsProvider'.\n\nWhen using a default Credentials Provider the S3 client will load the credentials through this provider and won't use the static credential. This is reason for not having the access key and secret key as mandatory parameter for this Kamelet."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-secrets-manager-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-secrets-manager-sink-sink.json
index fe5951b1e..6cb7f6556 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-secrets-manager-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-secrets-manager-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-secrets-manager-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Create a secret in AWS Secrets Manager.\n\nAccess Key\/Secret Key are the basic method for authenticating to the AWS Secrets Manager Service. These parameters are optional because the Kamelet provides the 'useDefaultCredentialsProvider'.\n\nWhen using a default Credentials Provider the Secrets Manager client will load the credentials through this provider and won't use the static credential. This is reason for not having the access key and secret key as mandatory parame [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ses-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ses-sink-sink.json
index 466c9117e..acf5864af 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ses-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-ses-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-ses-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send email through the Amazon Simple Email Service (SES).\n\nThe basic authentication method for the SES service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the SES client loads the credentials through this provider and doesn't use the basic authentication method.\n\nIn the header, you can optionally set the following properties:\n [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sns-fifo-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sns-fifo-sink-sink.json
index a0629547f..41b48a7c6 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sns-fifo-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sns-fifo-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-sns-fifo-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send message to an AWS SNS FIFO Topic.\n\nAccess Key\/Secret Key are the basic method for authenticating to the AWS SNS Service. These parameters are optional because the Kamelet provides the 'useDefaultCredentialsProvider'.\n\nWhen using a default Credentials Provider the SNS client will load the credentials through this provider and won't use the static credential. This is reason for not having the access key and secret key as mandatory parameter for this Kamelet.\n\n [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sns-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sns-sink-sink.json
index ada751d7f..200bda66b 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sns-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sns-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-sns-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send message to an Amazon Simple Notification Service (SNS) topic.\n\nThe basic authentication method for the SNS service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the SNS client loads the credentials through this provider and doesn't use the basic authentication method.\n\nIn the header, you can optionally set the `subject` \/ ` [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-batch-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-batch-sink-sink.json
index e18786d2a..860f428cc 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-batch-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-batch-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-sqs-batch-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send Batch message to an AWS SQS Queue.\n\nAccess Key\/Secret Key are the basic method for authenticating to the AWS SQS Service. These parameters are optional because the Kamelet provides the 'useDefaultCredentialsProvider'.\n\nWhen using a default Credentials Provider the SQS client will load the credentials through this provider and won't use the static credential. This is reason for not having the access key and secret key as mandatory parameter for this Kamelet."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-fifo-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-fifo-sink-sink.json
index 5329f3eb9..444e8922d 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-fifo-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-fifo-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-sqs-fifo-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "\nSend message to an AWS SQS FIFO Queue.\n\nAccess Key\/Secret Key are the basic method for authenticating to the AWS SQS Service. These parameters are optional because the Kamelet provides the 'useDefaultCredentialsProvider'.\n\nWhen using a default Credentials Provider the SQS client will load the credentials through this provider and won't use the static credential. This is reason for not having the access key and secret key as mandatory parameter for this Kamelet."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-sink-sink.json
index 9cfd7a609..13595196b 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-sqs-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send messages to an Amazon Simple Queue Service (SQS) queue.\n\nThe basic authentication method for the SQS service is to specify an access key and a secret key. These parameters are optional because the Kamelet provides a default credentials provider.\n\nIf you use the default credentials provider, the SQS client loads the credentials through this provider and doesn't use the basic authentication method."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-source-source.json
index 216bf8207..401e2deb6 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws-sqs-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws-sqs-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from AWS SQS.\n\nAccess Key\/Secret Key are the basic method for authenticating to the AWS SQS Service. These parameters are optional because the Kamelet provides the 'useDefaultCredentialsProvider'.\n\nWhen using a default Credentials Provider the SQS client will load the credentials through this provider and won't use the static credential. This is reason for not having the access key and secret key as mandatory parameter for this Kamelet.\n\nTwo headers  [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws2-iam-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws2-iam-sink.json
index ba37d8e7c..a3932bc83 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws2-iam-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws2-iam-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws2-iam-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Manage AWS IAM instances using AWS SDK version 2.x."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws2-kms-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws2-kms-sink.json
index d414e7035..672c2ec8f 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws2-kms-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-aws2-kms-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-aws2-kms-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Manage keys stored in AWS KMS instances using AWS SDK version 2.x."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-cosmosdb-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-cosmosdb-sink-sink.json
index 467cc4b71..f1a7051e5 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-cosmosdb-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-cosmosdb-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-cosmosdb-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send Data to an Azure CosmosDB instance\n\nIn the headers, you can optionally set the `itemPartitionKey` \/ `ce-itemPartitionKey` property to specify the partition key for a specific item.\n\nIf you do not set the property in the header, you'll need to use the static property itemPartitonKey."
 	},
 	"properties": {
@@ -40,4 +40,4 @@
 			"required": "false"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-cosmosdb-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-cosmosdb-source-source.json
index ff103fec8..2f0814878 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-cosmosdb-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-cosmosdb-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-cosmosdb-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume Changes from a CosmosDB instance"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-eventhubs-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-eventhubs-sink-sink.json
index ccccd64aa..8a6d3d5a3 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-eventhubs-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-eventhubs-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-eventhubs-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send events to Azure Event Hubs.\n\nThe Kamelet checks for the `partition-id` \/ `ce-partition-id` header which is an identifier of the Event Hub partition that the event will be sent to. If the identifier is not specified, the Event Hubs service will be responsible for routing events that are sent to an available partition.\n   \nA header is optional. If the header is not set, the partition is assigned by Event Hubs."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-eventhubs-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-eventhubs-source-source.json
index 6233e84e0..0eac6e066 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-eventhubs-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-eventhubs-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-eventhubs-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive events from Azure Event Hubs."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-functions-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-functions-sink-sink.json
index 011704d4f..83a881643 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-functions-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-functions-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-functions-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Forward data to an Azure Function."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-servicebus-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-servicebus-sink-sink.json
index a4fc54531..4d47e38db 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-servicebus-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-servicebus-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-servicebus-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send Messages to Azure Servicebus."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-servicebus-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-servicebus-source-source.json
index e81b2a868..26230426a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-servicebus-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-servicebus-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-servicebus-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume Messages from Azure Servicebus.\n\nThe subscribtion name parameter needs to be populated in case of consuming from a Topic."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-cdc-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-cdc-source-source.json
index 96818bde7..06bd68f14 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-cdc-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-cdc-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-storage-blob-cdc-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Azure Service Bus subscribed to Azure Eventgrid reporting events related to a Azure Storage Blob account.\n\nConnection string is the basic method for authenticating to the Azure Servicebus Queue.\n\nTo use this Kamelet you'll need to set up Events on your Azure Storage Blob account and select as an endpoint an Azure Servicebus Queue."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-changefeed-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-changefeed-source-source.json
index 764ba092d..a0b1e1c62 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-changefeed-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-changefeed-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-storage-blob-changefeed-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume events from an Azure Storage Blob change feed."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-sink-sink.json
index a7b47c103..1ff7d89be 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-storage-blob-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Upload data to Azure Storage Blob.\n\nIn the header, you can set the `file` \/ `ce-file` property to specify the filename to upload. If you do set property in the header, the Kamelet uses the exchange ID as filename."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-source-source.json
index 668281663..0050c7de4 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-blob-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-storage-blob-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume files from Azure Storage Blob.\n\nTwo headers will be duplicated with different names for clarity at sink level, CamelAzureStorageBlobETag will be duplicated into azure.storage.blob.e.tag and CamelAzureStorageBlobBlobSize will be duplicated in azure.storage.blob.blob.size"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-datalake-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-datalake-sink-sink.json
index 278459d4c..10b1e2fff 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-datalake-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-datalake-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-storage-datalake-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to Azure Storage Blob Data Lake."
 	},
 	"properties": {
@@ -40,4 +40,4 @@
 			"required": "true"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-datalake-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-datalake-source-source.json
index 551fb7540..f8eb0cbb7 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-datalake-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-datalake-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-storage-datalake-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume files from Azure Storage Blob Data Lake."
 	},
 	"properties": {
@@ -47,4 +47,4 @@
 			"required": "false"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-queue-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-queue-sink-sink.json
index 60f034e34..b4db0f78b 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-queue-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-queue-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-storage-queue-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send events to Azure Storage queues.\n\nIn the header, you can set the `partition` \/ `ce-partition` property to determine how long an event remains in the Azure Storage queue. Use `PnDTnHnMn.nS.` format. For example, `PT20.345S`\u2009parses as 20.345 seconds and `P2D`\u2009parses as 2 days. If you not set the property in the header, the Kamelet uses the default of `P27D` (7 days)."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-queue-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-queue-source-source.json
index 0d3279af4..7614a6c8f 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-queue-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-azure-storage-queue-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-azure-storage-queue-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive events from Azure Storage queues.\n\nOne header will be duplicated with different names for clarity at sink level, CamelAzureStorageQueueMessageId will be duplicated into azure.storage.queue.message.id"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-beer-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-beer-source-source.json
index 8ed65a512..ff8d1532b 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-beer-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-beer-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-beer-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Produces periodic events about beers!"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-bitcoin-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-bitcoin-source-source.json
index c605e27fc..27ed9a804 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-bitcoin-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-bitcoin-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-bitcoin-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Provides a feed of the value of the Bitcoin compared to USDT using the Binance service."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cassandra-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cassandra-sink-sink.json
index a830b8fe4..c768cbac9 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cassandra-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cassandra-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-cassandra-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to an Apache Cassandra cluster.\n\nThis Kamelet expects JSON Array formatted data. The content of the JSON Array is used as input for the CQL Prepared Statement set in the query parameter."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cassandra-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cassandra-source-source.json
index d6f76131d..9f8536a71 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cassandra-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cassandra-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-cassandra-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send a query to an Apache Cassandra cluster table."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ceph-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ceph-sink-sink.json
index 31260e24c..66d03adaf 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ceph-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ceph-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-ceph-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Upload data to an Ceph Bucket managed by a Object Storage Gateway.\n\nIn the header, you can optionally set the `file` \/ `ce-file` property to specify the name of the file to upload.\n\nIf you do not set the property in the header, the Kamelet uses the exchange ID for the file name."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ceph-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ceph-source-source.json
index 82751cfd9..2a49f21eb 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ceph-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ceph-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-ceph-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from an Ceph Bucket, managed by a Object Storage Gateway."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-chuck-norris-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-chuck-norris-source-source.json
index 1c6580010..b38b5393a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-chuck-norris-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-chuck-norris-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-chuck-norris-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Gets periodically Chuck Norris jokes"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-couchbase-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-couchbase-sink-sink.json
index 11f9de4ea..b725cee00 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-couchbase-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-couchbase-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-couchbase-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send documents to Couchbase."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cron-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cron-source-source.json
index b13045704..8487980e4 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cron-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cron-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-cron-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send events at specific time."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxf-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxf-sink.json
index 44df840da..5abe8266e 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxf-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxf-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-cxf-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Expose SOAP WebServices using Apache CXF or connect to external WebServices using CXF WS client."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxf-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxf-source.json
index a83c1f876..73479b35d 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxf-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxf-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-cxf-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Expose SOAP WebServices using Apache CXF or connect to external WebServices using CXF WS client."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxfrs-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxfrs-sink.json
index 3fa9a35b2..e98774996 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxfrs-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxfrs-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-cxfrs-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Expose JAX-RS REST services using Apache CXF or connect to external REST services using CXF REST client."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxfrs-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxfrs-source.json
index 0623fd5c3..8d9e24461 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxfrs-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-cxfrs-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-cxfrs-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Expose JAX-RS REST services using Apache CXF or connect to external REST services using CXF REST client."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-dropbox-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-dropbox-sink-sink.json
index 9274f23a4..6b5bca4cc 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-dropbox-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-dropbox-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-dropbox-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Upload Files to Dropbox.\n\nThe Kamelet expects the following headers to be set:\n\n- `file` \/ `ce-file`: as the file name to upload\n\nIf the header won't be set the exchange ID will be used as file name."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-dropbox-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-dropbox-source-source.json
index 16f694ea1..6d7279ee7 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-dropbox-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-dropbox-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-dropbox-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume Files from Dropbox."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-earthquake-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-earthquake-source-source.json
index c3514533c..404635494 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-earthquake-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-earthquake-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-earthquake-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Get data about current earthquake events happening in the world using the USGS API"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-elasticsearch-index-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-elasticsearch-index-sink-sink.json
index 3a9eab7af..846c4bae2 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-elasticsearch-index-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-elasticsearch-index-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-elasticsearch-index-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Stores JSON-formatted data into ElasticSearch.\n\nThe input data must be formatted in JSON according to the requirements of the index. \n\nIf you specify the `certificate` property, you must base64 encode it before you pass it as a parameter.\n\nIn the header, you can set the following properties:\n\n- `indexId` \/ `ce-indexid`: The index ID for ElasticSearch.\n\n- `indexName` \/ `ce-indexname`: The index name for ElasticSearch.\n\nIf you do not set a property in the he [...]
 	},
 	"properties": {
@@ -53,4 +53,4 @@
 			"required": "false"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-elasticsearch-search-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-elasticsearch-search-source-source.json
index d894ec980..739fb0fd6 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-elasticsearch-search-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-elasticsearch-search-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-elasticsearch-search-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Search data on ElasticSearch\n\nThe `query` parameter must be formatted in JSON.\n\nIf you specify the `certificate` property, you must base64 encode it before you pass it as a parameter."
 	},
 	"properties": {
@@ -66,4 +66,4 @@
 			"required": "false"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-exec-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-exec-sink-sink.json
index f80f31607..f58c8e076 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-exec-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-exec-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-exec-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Execute system commands\n\nThe Kamelet expects the following headers to be set:\n\n- `args` \/ `ce-args`: as the args to be set on the executable.\n\nIf the header won't be set the executable will be run without arguments."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-fhir-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-fhir-sink-sink.json
index 8a8c37f05..63fb80a14 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-fhir-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-fhir-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-fhir-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Forward data to a Fhir endpoint."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-fhir-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-fhir-source-source.json
index e4814007b..d32b13109 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-fhir-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-fhir-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-fhir-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Fhir server."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-sink.json
index 8f60cdc31..5f1d21ba7 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-file-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Read and write files."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-source.json
index ed5775a6e..f31d2d1b0 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-file-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Read and write files."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-watch-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-watch-source-source.json
index b5316919d..0ce338582 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-watch-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-file-watch-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-file-watch-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive events related to a file or folder. It may require a volume mounting on Kubernetes."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftp-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftp-sink-sink.json
index ef9aeca94..3c6f5314e 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftp-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftp-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-ftp-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to an FTP server.\n\nIn the header, you can set the `file` \/ `ce-file` property to specify the filename to upload.\n\nIf you do not set the property in the header, the Kamelet uses the exchange ID for the filename."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftp-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftp-source-source.json
index a9531cd79..c59d9cf20 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftp-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftp-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-ftp-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from an FTP server."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftps-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftps-sink-sink.json
index 765eab8e0..378d4511a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftps-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftps-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-ftps-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to an FTPS server.\n\nIn the header, you can set the `file` \/ `ce-file` property to specify the filename to upload.\n\nIf you do not set the property in the header, the Kamelet uses the exchange ID for the filename."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftps-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftps-source-source.json
index cee49630c..6a20fd3d2 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftps-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ftps-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-ftps-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from an FTPS server."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-commit-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-commit-source-source.json
index 6701d8702..563c2d6a0 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-commit-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-commit-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-github-commit-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive commit From GitHub."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-event-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-event-source-source.json
index 06ecfeed0..ec1843644 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-event-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-event-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-github-event-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive Events From a GitHub Repository."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-pullrequest-comment-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-pullrequest-comment-source-source.json
index 9a7abea09..5e0ead997 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-pullrequest-comment-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-pullrequest-comment-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-github-pullrequest-comment-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive pull request Comments From GitHub."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-pullrequest-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-pullrequest-source-source.json
index 540d7ee69..805fdccbb 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-pullrequest-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-pullrequest-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-github-pullrequest-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive pull request From GitHub."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-tag-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-tag-source-source.json
index 5d778182c..45f3ccfed 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-tag-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-github-tag-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-github-tag-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive Tags From a GitHub Repository."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-bigquery-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-bigquery-sink-sink.json
index d455aac6d..3df906646 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-bigquery-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-bigquery-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-bigquery-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to a Google Big Query table.\n\nThe data must be JSON format to represent an object or an array of objects."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-calendar-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-calendar-source-source.json
index 6cc5b69e5..01669fc05 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-calendar-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-calendar-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-calendar-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive event data from Google Calendar."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-functions-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-functions-sink-sink.json
index 71c44bbf2..49e316a15 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-functions-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-functions-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-functions-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to Google Functions."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-mail-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-mail-source-source.json
index 6a5ecadaa..8368057b5 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-mail-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-mail-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-mail-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Google Mail."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-pubsub-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-pubsub-sink-sink.json
index b9d1f8d97..dc4f260de 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-pubsub-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-pubsub-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-pubsub-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send messages to Google Cloud Pub\/Sub.\n\nIf you specify the `serviceAccountKey` property, you must base64 encode it before you pass it as a parameter."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-pubsub-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-pubsub-source-source.json
index 77905a1e9..e77b915fc 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-pubsub-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-pubsub-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-pubsub-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume messages from Google Cloud Pub\/Sub.\n\nIf you specify the `serviceAccountKey` property, you must base64 encode it before you pass it as a parameter."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-sheets-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-sheets-source-source.json
index a3e968f09..00f8533eb 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-sheets-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-sheets-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-sheets-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Google Sheets."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-cdc-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-cdc-source-source.json
index 224bd099f..94c5713dd 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-cdc-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-cdc-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-storage-cdc-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Google Pubsub reporting events related to a Google Storage bucket.\n\nService account key is the basic method for authenticating to the Google Pubsub and Google Storage.\n\nTo use this Kamelet you'll need to set up Events notification for your Google Storage Bucket.\n\nYou must encode the `serviceAccountKey` property before you pass it as a parameter."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-sink-sink.json
index f21027dde..bb02b968d 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-storage-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Upload objects to Google Cloud Storage.\n\nIf you specify the `serviceAccountKey` property, you must base64 encode it before you pass it as a parameter.\n \nIn the header, you can set the `file` \/ `ce-file` property to specify the filename to upload. If you do set property in the header, the Kamelet uses the exchange ID as filename."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-source-source.json
index 40b86e9a2..b8353d66d 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-google-storage-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-google-storage-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume objects from Google Cloud Storage.\n\nIf you specify the `serviceAccountKey` property, you must base64 encode it before you pass it as a parameter."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-graphql-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-graphql-sink-sink.json
index d87748590..1a371b280 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-graphql-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-graphql-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-graphql-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Forward data to a GraphQL endpoint."
 	},
 	"properties": {
@@ -22,4 +22,4 @@
 			"required": "false"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hdfs-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hdfs-sink.json
index 117687242..671d3ad5a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hdfs-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hdfs-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-hdfs-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Read and write from\/to an HDFS filesystem using Hadoop 2.x."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hdfs-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hdfs-source.json
index 1b3f8372d..535f0dff3 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hdfs-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-hdfs-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-hdfs-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Read and write from\/to an HDFS filesystem using Hadoop 2.x."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-secured-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-secured-sink-sink.json
index ed0c3c252..c3f8857dd 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-secured-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-secured-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-http-secured-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Forwards an event to a secured HTTP endpoint"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-secured-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-secured-source-source.json
index a62d5595a..06d87d4ce 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-secured-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-secured-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-http-secured-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Periodically fetches a secured HTTP resource and provides the content as output."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-sink-sink.json
index 5c169c763..d899bc6c7 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-http-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Forward data to a HTTP or HTTPS endpoint."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-source-source.json
index ee57652ed..3024914e3 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-http-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-http-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Periodically fetches an HTTP resource and provides the content as output."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-https-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-https-sink.json
index 373e319c2..c2db1b4e6 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-https-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-https-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-https-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send requests to external HTTP servers using Apache HTTP Client 5.x."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-infinispan-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-infinispan-sink-sink.json
index 8a15a1aa1..31e9eca26 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-infinispan-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-infinispan-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-infinispan-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Write object to an Infinispan cache.\n\nThe Kamelet expects the following headers to be set:\n\n- `key` \/ `ce-key`: as the key to use when put an object in the Infinispan cache.\n\nIf the header won't be set the exchange ID will be used as key."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-infinispan-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-infinispan-source-source.json
index 12f2b4e68..b5c8d2540 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-infinispan-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-infinispan-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-infinispan-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Get Events from an Infinispan cache"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jdbc-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jdbc-sink.json
index 722ea546e..fafed73df 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jdbc-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jdbc-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jdbc-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Access databases through SQL and JDBC."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-add-comment-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-add-comment-sink-sink.json
index 1a1adccb0..8f2c2066a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-add-comment-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-add-comment-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jira-add-comment-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Add a new comment to an existing issue in Jira.\n\nThe Kamelet expects the following headers to be set:\n\n- `issueKey` \/ `ce-issueKey`: as the issue code.\n\nThe comment is set in the body of the message.\n\nTo authenticate a username\/password or personal token must be defined. We recommend to use personal token as it is a safer way to get access to Jira."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-add-issue-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-add-issue-sink-sink.json
index b0b1bfc7f..95cce8b75 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-add-issue-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-add-issue-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jira-add-issue-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Add a new issue to Jira.\n\nThe Kamelet expects the following headers to be set:\n\n- `projectKey` \/ `ce-projectKey`: as the Jira project key.\n\n- `issueTypeName` \/ `ce-issueTypeName`: as the name of the issue type (example: Bug, Enhancement).\n\n- `issueSummary` \/ `ce-issueSummary`: as the title or summary of the issue.\n\n- `issueAssignee` \/ `ce-issueAssignee`: as the user assigned to the issue (Optional).\n\n- `issuePriorityName` \/ `ce-issuePriorityName`: as th [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-oauth-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-oauth-source-source.json
index 4a55561a6..402ec3905 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-oauth-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-oauth-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jira-oauth-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive notifications about new issues from Jira through OAuth authentication."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-source-source.json
index b64596fbe..2cc60a917 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jira-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive notifications about new issues from Jira.\n\nTo authenticate a username\/password or personal token must be defined. We recommend to use personal token as it is a safer way to get access to Jira."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-transition-issue-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-transition-issue-sink-sink.json
index 192f93d87..7680d6e23 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-transition-issue-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-transition-issue-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jira-transition-issue-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Sets a new status (transition to) of an existing issue in Jira.\n\nThe Kamelet expects the following headers to be set:\n\n- `issueKey` \/ `ce-issueKey`: as the issue unique code.\n\n- `issueTransitionId` \/ `ce-issueTransitionId`: as the new status (transition) code. You should carefully check the project workflow as each transition may have conditions to check before the transition is made.\n\nThe comment of the transition is set in the body of the message.\n\nTo auth [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-update-issue-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-update-issue-sink-sink.json
index 432bde0a0..22d95bd2d 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-update-issue-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jira-update-issue-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jira-update-issue-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Update fields of an existing issue in Jira.\n\nThe Kamelet expects the following headers to be set:\n\n- `issueKey` \/ `ce-issueKey`: as the issue code in Jira.\n\n- `issueTypeName` \/ `ce-issueTypeName`: as the name of the issue type (example: Bug, Enhancement).\n\n- `issueSummary` \/ `ce-issueSummary`: as the title or summary of the issue.\n\n- `issueAssignee` \/ `ce-issueAssignee`: as the user assigned to the issue (Optional).\n\n- `issuePriorityName` \/ `ce-issuePri [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-amqp-10-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-amqp-10-sink-sink.json
index 7aef4a189..0c08d3d67 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-amqp-10-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-amqp-10-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jms-amqp-10-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to any AMQP 1.0 compliant message broker by using the Apache Qpid JMS client."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-amqp-10-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-amqp-10-source-source.json
index dd19e70bc..5e845f7ad 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-amqp-10-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-amqp-10-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jms-amqp-10-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume data from any AMQP 1.0 compliant message broker by using the Apache Qpid JMS client."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-apache-artemis-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-apache-artemis-sink-sink.json
index d90467323..bf157d93a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-apache-artemis-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-apache-artemis-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jms-apache-artemis-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to an Apache Artemis message broker by using JMS."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-apache-artemis-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-apache-artemis-source-source.json
index 78758e20d..a54bca2b0 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-apache-artemis-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-apache-artemis-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jms-apache-artemis-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from an Apache Artemis message broker by using JMS."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-ibm-mq-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-ibm-mq-sink-sink.json
index 14b95e12d..c9c0a51be 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-ibm-mq-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-ibm-mq-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jms-ibm-mq-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "A Kamelet that can produce events to an IBM MQ message queue using JMS.\n\nIn your KameletBinding file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies\n\n- \"mvn:com.ibm.mq:com.ibm.mq.allclient:<version>\""
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-ibm-mq-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-ibm-mq-source-source.json
index 38c2cb1b1..a97743008 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-ibm-mq-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-jms-ibm-mq-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-jms-ibm-mq-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "A Kamelet that can read events from an IBM MQ message queue using JMS.\n\nIn your KameletBinding file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies\n\n- \"mvn:com.ibm.mq:com.ibm.mq.allclient:<version>\""
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-not-secured-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-not-secured-sink-sink.json
index c699e594b..4795f826a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-not-secured-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-not-secured-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kafka-not-secured-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to Kafka topics on an insecure broker.\n\nThe Kamelet is able to understand the following headers to be set:\n\n- `key` \/ `ce-key`: as message key\n\n- `partition-key` \/ `ce-partitionkey`: as message partition key\n\nBoth the headers are optional.\n\nThree headers, if specified, will be deduplicated with different names, kafka.key will be duplicated into kafka.KEY, kafka.topic into kafka.TOPIC and kafka.override_topic into kafka.OVERRIDE_TOPIC"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-not-secured-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-not-secured-source-source.json
index 5091a7bf0..83e4a3880 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-not-secured-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-not-secured-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kafka-not-secured-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Kafka topics on an insecure broker."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-scram-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-scram-sink-sink.json
index 330ef2043..214c1881e 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-scram-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-scram-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kafka-scram-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to Kafka topics through SCRAM login module.\n\nThe Kamelet is able to understand the following headers to be set:\n\n- `key` \/ `ce-key`: as message key\n\n- `partition-key` \/ `ce-partitionkey`: as message partition key\n\nBoth the headers are optional."
 	},
 	"properties": {
@@ -48,4 +48,4 @@
 			"required": "true"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-scram-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-scram-source-source.json
index b3226f6c2..3352379c8 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-scram-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-scram-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kafka-scram-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Kafka topics through SCRAM login module."
 	},
 	"properties": {
@@ -89,4 +89,4 @@
 			"required": "false"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-sink-sink.json
index d162e457c..998e10f73 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kafka-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to Kafka topics through Plain Login Module.\n\nThe Kamelet is able to understand the following headers to be set:\n\n- `key` \/ `ce-key`: as message key\n\n- `partition-key` \/ `ce-partitionkey`: as message partition key\n\nBoth the headers are optional."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-source-source.json
index 9216c486d..e713a59a4 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kafka-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Kafka topics through Plain Login Module."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-ssl-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-ssl-sink-sink.json
index 1ef165951..39103340e 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-ssl-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-ssl-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kafka-ssl-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to Kafka topics wit TLS\/SSL support.\n\nThe Kamelet is able to understand the following headers to be set:\n\n- `key` \/ `ce-key`: as message key\n\n- `partition-key` \/ `ce-partitionkey`: as message partition key\n\nBoth the headers are optional."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-ssl-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-ssl-source-source.json
index 0bb61ef06..7f3774179 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-ssl-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kafka-ssl-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kafka-ssl-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Kafka topics with SSL\/TLS support"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-namespaces-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-namespaces-source-source.json
index fd7779d45..a9109110c 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-namespaces-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-namespaces-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kubernetes-namespaces-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume Events from Kubernetes Namespaces"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-nodes-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-nodes-source-source.json
index 766f7beb3..26229ecc5 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-nodes-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-nodes-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kubernetes-nodes-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume Events from Kubernetes Nodes"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-pods-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-pods-source-source.json
index 7d1571f27..d2395108e 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-pods-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-kubernetes-pods-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-kubernetes-pods-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume Events from Kubernetes Pods"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-log-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-log-sink-sink.json
index 39efc33f8..feab33993 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-log-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-log-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-log-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "A sink that logs all data that it receives, useful for debugging purposes."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mail-imap-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mail-imap-source-source.json
index 3d8eb7606..514ef5768 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mail-imap-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mail-imap-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mail-imap-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive unread emails from an IMAP mail server, marking them as read once they are received.\n\nThe Kamelet generates the following headers:\n\n- `subject` \/ `ce-subject`: the subject of the incoming mail\n\n- `from` \/ `ce-from`: the `from` field of the incoming mail\n\n- `to` \/ `ce-to`: the `to` field of the incoming mail\n\n- `cc` \/ `ce-cc`: the `cc` field of the incoming mail"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mail-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mail-sink-sink.json
index 8e4195a1b..37f7c5401 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mail-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mail-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mail-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send mails to given SMTP server."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mariadb-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mariadb-sink-sink.json
index e5073c937..c4086691f 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mariadb-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mariadb-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mariadb-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to a MariaDB Database.\n\nIn your KameletBinding file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies.\n\n- \"mvn:org.mariadb.jdbc:mariadb-java-client:<version>\"\n\nThis Kamelet expects a JSON-formatted body. Use key:value pairs to map the JSON fields and parameters. For example, here is a query:\n\n'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'\n\nHere is example input for the example qu [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mariadb-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mariadb-source-source.json
index b777e8ad6..26387a90e 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mariadb-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mariadb-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mariadb-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Query data from a MariaDB Database.\n\nIn your KameletBinding file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies\n\n- \"mvn:org.mariadb.jdbc:mariadb-java-client:<version>\""
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-minio-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-minio-sink-sink.json
index d6b224fe3..58949d7b6 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-minio-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-minio-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-minio-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Upload data to MinIO.\n\nIn the header, you can set the `file` \/ `ce-file` property to specify the filename to upload.\n\nIf you do not set the property in the header, the Kamelet uses the exchange ID for the filename."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-minio-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-minio-source-source.json
index 7c93f1c33..c44364f00 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-minio-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-minio-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-minio-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from MinIO."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-changes-stream-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-changes-stream-source-source.json
index f223a7e97..15821985d 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-changes-stream-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-changes-stream-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mongodb-changes-stream-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume Changes from MongoDB Collection in streaming mode."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-sink-sink.json
index fb2cab7d3..fec38c43f 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mongodb-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to MongoDB.\n\nThis Kamelet expects a JSON-formatted body.\n\nIn the header, you can set the `db-upsert` \/ `ce-dbupsert` property, a boolean value that specifies whether the database should create an element if it does not exist."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-source-source.json
index 922677b90..dc74c1d44 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mongodb-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mongodb-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Consume data from MongoDB.\n\nIf you enable the `persistentTailTracking` property, the consumer keeps track of the last consumed message and, on the next restart, the consumption restarts from that message. If you enable `persistentTailTracking`, you must provide a value for the `tailTrackIncreasingField` property (by default it is optional).\n\nIf you disable the `persistentTailTracking` property, the consumer consumes the whole collection and waits in idle for new dat [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt-sink-sink.json
index ea901230c..ee80e3bd4 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mqtt-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Allows sending messages to any endpoint that supports the MQTT protocol, such as a message broker."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt-source-source.json
index 88ab7d546..b38a4bad9 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mqtt-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Allows receiving messages from any endpoint that supports the MQTT protocol, such as a message broker."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt5-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt5-sink-sink.json
index e23835fa3..56a0a3252 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt5-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt5-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mqtt5-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Allows sending messages to any endpoint that supports the MQTT v5 protocol, such as a message broker."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt5-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt5-source-source.json
index 9a55d0887..875ea6456 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt5-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mqtt5-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mqtt5-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Allows receiving messages from any endpoint that supports the MQTT v5 protocol, such as a message broker."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mysql-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mysql-sink-sink.json
index 7c2856936..25b53ad5a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mysql-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mysql-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mysql-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to a MySQL Database.\n\nIn your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies.\n\n- \"mvn:mysql:mysql-connector-java:<version>\"\n\nThis Kamelet expects a JSON-formatted body. Use key:value pairs to map the JSON fields and parameters. For example, here is a query:\n\n'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'\n\nHere is example input for the example query:\n\n'{ \"use [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mysql-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mysql-source-source.json
index bf07fb28d..527b1195c 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mysql-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-mysql-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-mysql-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Query data from a MySQL Database.\n\nIn your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies.\n\n- \"mvn:mysql:mysql-connector-java:<version>\""
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-nats-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-nats-sink-sink.json
index dcf69aafc..a57b9875a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-nats-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-nats-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-nats-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to NATS topics."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-nats-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-nats-source-source.json
index 6edf52b06..a5041af6d 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-nats-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-nats-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-nats-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from NATS topics."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-http-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-http-sink.json
index b1f203e79..33fe293e0 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-http-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-http-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-netty-http-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Netty HTTP server and client using the Netty 4.x."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-http-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-http-source.json
index 9ccb2a9e2..14534af3e 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-http-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-http-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-netty-http-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Netty HTTP server and client using the Netty 4.x."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-sink.json
index 714f0d933..ac76b9f6a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-netty-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Socket level networking using TCP or UDP with Netty 4.x."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-source.json
index 36dc302cc..6ef18d574 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-netty-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-netty-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Socket level networking using TCP or UDP with Netty 4.x."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-opensearch-index-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-opensearch-index-sink-sink.json
index 32a7b8b5d..260a604ab 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-opensearch-index-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-opensearch-index-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-opensearch-index-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Stores JSON-formatted data into Opensearch.\n\nThe input data must be formatted in JSON according to the requirements of the index. \n\nIf you specify the `certificate` property, you must base64 encode it before you pass it as a parameter.\n\nIn the header, you can set the following properties:\n\n- `indexId` \/ `ce-indexid`: The index ID for OpenSearch.\n\n- `indexName` \/ `ce-indexname`: The index name for OpenSearch.\n\nIf you do not set a property in the header, the [...]
 	},
 	"properties": {
@@ -53,4 +53,4 @@
 			"required": "false"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-opensearch-search-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-opensearch-search-source-source.json
index cefce451b..810692ed0 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-opensearch-search-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-opensearch-search-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-opensearch-search-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Search data on OpenSearch\n\nThe `query` parameter must be formatted in JSON.\n\nIf you specify the `certificate` property, you must base64 encode it before you pass it as a parameter."
 	},
 	"properties": {
@@ -66,4 +66,4 @@
 			"required": "false"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-oracle-database-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-oracle-database-sink-sink.json
index 30a6e7af4..532c1f693 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-oracle-database-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-oracle-database-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-oracle-database-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to an Oracle Database.\n\nIn your KameletBinding file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies.\n\n- \"mvn:com.oracle.database.jdbc:ojdbc11:<version>\"\n\nThis Kamelet expects a JSON-formatted body. Use key:value pairs to map the JSON fields and parameters. For example, here is a query:\n\n'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'\n\nHere is example input for the example query [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-oracle-database-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-oracle-database-source-source.json
index e0c07c549..8bc97049c 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-oracle-database-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-oracle-database-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-oracle-database-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Query data from an Oracle Database.\n\nIn your KameletBinding file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies.\n\n- \"mvn:com.oracle.database.jdbc:ojdbc11:<version>\""
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-postgresql-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-postgresql-sink-sink.json
index 36768678b..8aff5ca39 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-postgresql-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-postgresql-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-postgresql-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to a PostgreSQL Database.\n\nThis Kamelet expects a JSON-formatted body. Use key:value pairs to map the JSON fields and parameters. For example, here is a query:\n\n'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'\n\nHere is example input for the example query:\n\n'{ \"username\":\"oscerd\", \"city\":\"Rome\"}'"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-postgresql-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-postgresql-source-source.json
index 0b54dc307..5ee3175e6 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-postgresql-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-postgresql-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-postgresql-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Query data from a PostgreSQL Database."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-pulsar-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-pulsar-sink-sink.json
index 738a3a842..17a4b0633 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-pulsar-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-pulsar-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-pulsar-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send documents to Pulsar."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-pulsar-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-pulsar-source-source.json
index d08bdec6b..5eb5dc79a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-pulsar-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-pulsar-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-pulsar-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from Pulsar topics."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-redis-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-redis-sink-sink.json
index 4dfc9a622..3389d69a9 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-redis-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-redis-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-redis-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Write object to a Redis cache."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-redis-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-redis-source-source.json
index 481a9f1b8..b2fd8911e 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-redis-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-redis-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-redis-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Get Events from a Redis cache"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-rest-openapi-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-rest-openapi-sink-sink.json
index e7f36f469..fc39bb9f6 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-rest-openapi-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-rest-openapi-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-rest-openapi-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Load an OpenAPI specification from a URI and call an operation on a HTTP service. The request that is generated respects the rules given in the OpenAPI specification (for example, path parameters and Content-Type)."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-composite-upsert-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-composite-upsert-sink-sink.json
index 52981b5ce..d87d1a4f3 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-composite-upsert-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-composite-upsert-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-salesforce-composite-upsert-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Upsert Composite List of sObjects in Salesforce. \n\nThe body received must contain List of JSON SObjects to insert\/update inside the records attribute, for example: \n\n`{\"records\" : [\"attributes\" : {\"type\" : \"KameletSinkSObject__c\"},\"ExtId__c\" : \"1\",\"Name__c\": \"Ziauddin\", \"City__c\": \"Bhopal\"], [\"attributes\" : {\"type\" : \"KameletSinkSObject__c\"},\"ExtId__c\" : \"2\",\"Name__c\": \"Shaikh\", \"City__c\": \"Bhopal\"] }`      "
 	},
 	"properties": {
@@ -53,4 +53,4 @@
 			"required": "true"
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-create-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-create-sink-sink.json
index 5de9d69ce..f06d1b837 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-create-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-create-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-salesforce-create-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Create an object in Salesforce. \n\nThe body of the message must contain the JSON of the Salesforce object, for example: `{ \"Phone\": \"555\", \"Name\": \"Antonia\", \"LastName\": \"Garcia\" }`."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-delete-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-delete-sink-sink.json
index aa95a6880..34981ab9b 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-delete-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-delete-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-salesforce-delete-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Remove an object from Salesforce. \n\nThe data body must be JSON-formatted and it must\ncontain two keys: `sObjectId` and `sObjectName`. For example: `{ \"sObjectId\": \"XXXXX0\", \"sObjectName\": \"Contact\" }`"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-source-source.json
index 5f197dcca..355f7762b 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-salesforce-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive updates from Salesforce."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-update-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-update-sink-sink.json
index 336f3c904..916e51ef1 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-update-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-salesforce-update-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-salesforce-update-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Update an object in Salesforce. \n\nThe body received must contain a JSON key-value pair for each property to update inside the payload attribute, for example: \n\n`{ \"payload\": { \"Phone\": \"1234567890\", \"Name\": \"Antonia\" } }`\n\nThe body received must include the `sObjectName` and `sObjectId` properties, for example:\n\n`{ \"payload\": { \"Phone\": \"1234567890\", \"Name\": \"Antonia\" }, \"sObjectId\": \"sObjectId\", \"sObjectName\": \"sObjectName\" }`"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-scp-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-scp-sink-sink.json
index a6276a90f..70e30a355 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-scp-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-scp-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-scp-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send file to an FTP Server through Secure Copy Protocol"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sftp-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sftp-sink-sink.json
index ee2e0dcbf..4c8c301f8 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sftp-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sftp-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-sftp-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to an SFTP Server.\n\nIn the header, you can set the `file` \/ `ce-file` property to specify the filename to upload.\n\nIf you do not set the property in the header, the Kamelet uses the exchange ID for the filename."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sftp-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sftp-source-source.json
index 5ebfa67e0..e52ac8670 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sftp-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sftp-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-sftp-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from an SFTP server."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-sink.json
index 606963b21..c9d5ccec9 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-sjms2-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send and receive messages to\/from a JMS Queue or Topic using plain JMS 2.x API."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-source.json
index 9ec9e6b10..5f8f94181 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-sjms2-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send and receive messages to\/from a JMS Queue or Topic using plain JMS 2.x API."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-slack-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-slack-sink-sink.json
index d3f37d1f9..aaaea5c51 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-slack-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-slack-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-slack-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send messages to a Slack channel."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-slack-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-slack-source-source.json
index d706f17ef..541381b5d 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-slack-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-slack-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-slack-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive messages from a Slack channel."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-hec-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-hec-sink-sink.json
index 0a804cb60..56edd8eae 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-hec-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-hec-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-splunk-hec-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "The Splunk HEC sink allows to send data to Splunk using the https:\/\/docs.splunk.com\/Documentation\/Splunk\/latest\/Data\/UsetheHTTPEventCollector[HTTP Event Collector]."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-sink-sink.json
index a20fb434f..117eda2be 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-splunk-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to Splunk either by using \"submit\" or \"stream\" mode.\n\nThe payload MUST be in json format."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-source-source.json
index a550d9142..6170d4ea2 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-splunk-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-splunk-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Retrieve data from Splunk and outputs in json format.\n\nFor the fields accepting time specifiers like `earliestTime`, it accepts a wide variety of formats, please check https:\/\/docs.splunk.com\/Documentation\/Splunk\/9.0.0\/Search\/Specifytimemodifiersinyoursearch[Splunk documentation] for more information."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sqlserver-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sqlserver-sink-sink.json
index 00f97bde9..b6db9c795 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sqlserver-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sqlserver-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-sqlserver-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send data to a Microsoft SQL Server Database.\n\nIn your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies\n\n- \"mvn:com.microsoft.sqlserver:mssql-jdbc:<version>\"\n\nThis Kamelet expects a JSON-formatted body. Use key:value pairs to map the JSON fields and parameters. For example, here is a query:\n\n'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'\n\nHere is example input for the exam [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sqlserver-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sqlserver-source-source.json
index 730df45a0..21872e359 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sqlserver-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sqlserver-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-sqlserver-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Query data from a Microsoft SQL Server Database.\n\nIn your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies\n\n- \"mvn:com.microsoft.sqlserver:mssql-jdbc:<version>\""
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ssh-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ssh-sink-sink.json
index 89dc0312e..ab065c01c 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ssh-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ssh-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-ssh-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send command through SSH session."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ssh-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ssh-source-source.json
index ef20bec05..12fc7899e 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ssh-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-ssh-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-ssh-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive data from SSH session."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-telegram-sink-sink.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-telegram-sink-sink.json
index 071d6888a..7ef0876a5 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-telegram-sink-sink.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-telegram-sink-sink.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-telegram-sink-sink",
 		"type": "sink",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Send a message to a Telegram chat by using your Telegram bot as sender.\n\nTo create a bot, use your Telegram app to contact the @botfather account.\n\nThis sink supports the following message types:\n\n- Standard text messages\n- PNG images (`Content-Type` must be set to `image\/png`)\n- JPEG images (`Content-Type` must be set to `image\/jpeg`)\n\nThis sink also supports the following message headers:\n\n- `text` \/ `ce-text`: when sending an image, the image caption\n [...]
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-telegram-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-telegram-source-source.json
index 25bb1fd98..a5b7e0a73 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-telegram-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-telegram-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-telegram-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Receive all messages that people send to your Telegram bot.\n\nTo create a bot, contact the @botfather account by using the Telegram app.\n\nThe source attaches the following header to the messages:\n\n- `chat-id` \/ `ce-chatid`: The ID of the chat where the message comes from."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-timer-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-timer-source-source.json
index 81a799437..7ed7fe5c5 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-timer-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-timer-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-timer-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Produces periodic messages with a custom payload."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-directmessage-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-directmessage-source-source.json
index 8d8b7a2be..468500790 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-directmessage-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-directmessage-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-twitter-directmessage-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Allows to get all direct messages for your Twitter account.\n\nIt requires tokens that can be obtained by creating an application \nin the Twitter developer portal: https:\/\/developer.twitter.com\/."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-search-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-search-source-source.json
index 57e3e4a4d..e48dab0bc 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-search-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-search-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-twitter-search-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Allows to get all tweets on particular keywords from Twitter.\n\nIt requires tokens that can be obtained by creating an application \nin the Twitter developer portal: https:\/\/developer.twitter.com\/."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-timeline-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-timeline-source-source.json
index a6bd7c641..fa5933608 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-timeline-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-twitter-timeline-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-twitter-timeline-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Allows to get tweets from the timeline of a specific user from Twitter.\n\nIt requires tokens that can be obtained by creating an application \nin the Twitter developer portal: https:\/\/developer.twitter.com\/."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-webhook-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-webhook-source-source.json
index ebb0a596a..1ac09bf61 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-webhook-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-webhook-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-webhook-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Creates an HTTP endpoint that can be used as a bridge to forward data to the Kamelet sink.\n\nThe \"subpath\" parameter of the Webhook source allows to customize the subpath where the integration will respond to HTTP requests.\nIt's common to use a non-guessable ID for that parameter.\n\nWhen the \"subpath\" parameter is set to \"webhook\" (default), the integration will accept requests at the \"https:\/\/integration-external-url\/webhook\" endpoint."
 	},
 	"properties": {
diff --git a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-wttrin-source-source.json b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-wttrin-source-source.json
index abc39a6bb..18e57c21a 100644
--- a/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-wttrin-source-source.json
+++ b/camel-kafka-connector-catalog/src/generated/resources/connectors/camel-wttrin-source-source.json
@@ -5,7 +5,7 @@
 		"groupId": "org.apache.camel.kafkaconnector",
 		"id": "camel-wttrin-source-source",
 		"type": "source",
-		"version": "4.0.0-SNAPSHOT",
+		"version": "4.0.1-SNAPSHOT",
 		"description": "Get weather forecasts from the wttr.in weather forecast service"
 	},
 	"properties": {
diff --git a/camel-kafka-connector-sbom/camel-sbom.json b/camel-kafka-connector-sbom/camel-sbom.json
new file mode 100644
index 000000000..73896c357
--- /dev/null
+++ b/camel-kafka-connector-sbom/camel-sbom.json
@@ -0,0 +1,89058 @@
+{
+  "bomFormat" : "CycloneDX",
+  "specVersion" : "1.4",
+  "version" : 1,
+  "metadata" : {
+    "tools" : [
+      {
+        "vendor" : "OWASP Foundation",
+        "name" : "CycloneDX Maven plugin",
+        "version" : "2.7.10",
+        "hashes" : [
+          {
+            "alg" : "MD5",
+            "content" : "1cc7f6a0382f8bb2f758d6a6ea401d1b"
+          },
+          {
+            "alg" : "SHA-1",
+            "content" : "a4297947a1f2d7d453105db542651614bbd37f38"
+          },
+          {
+            "alg" : "SHA-256",
+            "content" : "bd0fdd8f2f2116eee5e715aeac1580f19eb7a10ec2b6f805b53567067658e872"
+          },
+          {
+            "alg" : "SHA-512",
+            "content" : "9cde8352a427e10b96cae01348fc7cfe5d4aa9cd0a5e5dd93b414ce3bb7d112993c3b3004e53af52567fbfa16de0704ec59a5556a635ad70571fd124ae389f39"
+          },
+          {
+            "alg" : "SHA-384",
+            "content" : "93d7bf5b5c735347edfbfbd66810273ca840f9a322b816d22d44c3d8e8255c09e86570bb23712aeb0cade0f478be5aeb"
+          },
+          {
+            "alg" : "SHA3-384",
+            "content" : "4467f16e9ca32190a6e49c65339eb28ee5e8c78f4e918fcf95128a4b7648898de56ccb43eacfad0c9391ef8cdb7d629a"
+          },
+          {
+            "alg" : "SHA3-256",
+            "content" : "ed2996c99b483e969221d5e9a40f562ea2ab85442d361d72a90e85266a3ed781"
+          },
+          {
+            "alg" : "SHA3-512",
+            "content" : "c8e6ea9ddc38edc77e284b3bf541663e84752bdc59ed1935799847a48a14ea2fa531b61008fefcba37d732a56702a11ac112437b9b80d18f4ecc8ef0ecfb32cf"
+          }
+        ]
+      }
+    ],
+    "component" : {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel.kafkaconnector",
+      "name" : "camel-kafka-connector-aggregator",
+      "version" : "4.0.1-SNAPSHOT",
+      "description" : "Builds the distribution of the Camel-Kafka-Connector project",
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel.kafkaconnector/camel-kafka-connector-aggregator@4.0.1-SNAPSHOT?type=pom",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://camel.apache.org/camel-kafka-connector-aggregator"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/apache/camel-kafka-connector/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "dev-subscribe@camel.apache.org"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://gitbox.apache.org/repos/asf?p=camel-kafka-connector.git;a=summary"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel.kafkaconnector/camel-kafka-connector-aggregator@4.0.1-SNAPSHOT?type=pom"
+    },
+    "properties" : [
+      {
+        "name" : "maven.goal",
+        "value" : "makeAggregateBom"
+      },
+      {
+        "name" : "maven.scopes",
+        "value" : "compile,provided,runtime,system"
+      },
+      {
+        "name" : "cdx:reproducible",
+        "value" : "enabled"
+      }
+    ]
+  },
+  "components" : [
+    {
+      "group" : "org.apache.camel.kafkaconnector",
+      "name" : "parent",
+      "version" : "4.0.1-SNAPSHOT",
+      "purl" : "pkg:maven/org.apache.camel.kafkaconnector/parent@4.0.1-SNAPSHOT?type=pom",
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel.kafkaconnector/parent@4.0.1-SNAPSHOT?type=pom"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel.kafkaconnector",
+      "name" : "camel-kafka-connector",
+      "version" : "4.0.1-SNAPSHOT",
+      "description" : "Camel Kafka Connector",
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-1.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel.kafkaconnector/camel-kafka-connector@4.0.1-SNAPSHOT?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://camel.apache.org/camel-kafka-connector-aggregator/parent/camel-kafka-connector"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/apache/camel-kafka-connector/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "dev-subscribe@camel.apache.org"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://gitbox.apache.org/repos/asf?p=camel-kafka-connector.git;a=summary/parent/camel-kafka-connector"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel.kafkaconnector/camel-kafka-connector@4.0.1-SNAPSHOT?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-core-engine",
+      "version" : "4.0.0",
+      "description" : "Just the Camel Core engine without any core components",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "613df317e02558bcaf84808aec05007f"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "5fa0e1924193bcd67466814d9396f867fc64742b"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "c5dc765716bec44839746be6b0887fc4717429d80622e63534365b3e339b5773"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "7e2da04b13ad4c1fafcd72e7010b55fc846a91dd19985d7e0062cc7003b70362762a1c8ff270527e59fead369ea9a6119d41e1fc5b58700487ab47a903e89f07"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "592c291dc94d6a0e3dbaf1ece3ecc2ec4d904c1a79f482de6ed6d91e08b3367c73fd6126f2c416e330129b690ebf9e6e"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "89a9afc3b8bd33356aa58b0ddaef7f26126765dfb0f133a54cc54432670c41a6dc311b92a054c7f73a492dc735ab9343"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "123131109f5d9cc279c68a7c5493497e8bd56ac95422042a581b93291ac3b06a"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "8d8aab8cb5fb8ca908025ac73088e9a1defcece3443dbe36679c84d16c2442cac87c6904db563dabb99d3f6c55bad1b55a446422b22c2d2064ff51b3f9cffbd2"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-core-engine@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-core-engine/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-core-engine"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-core-engine@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-api",
+      "version" : "4.0.0",
+      "description" : "The Camel API",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "aaad7f5fa6eeb179d4c6759a39b5a14d"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "15332b57bb7946cb22a9323023502e7570e95235"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "1cc0e3e672c668f04ab6784101888152492d33bee809be0a5d4d86c43754dc70"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "896a10b1b8a0ff3b9887ef20cb2d8549a9ed7068034f03d82903c960a491b110cc1974a9f62346d6c029e42347917af7f87bc97403b2882dbc1d7d04cd3ae6c2"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "cd968dc767a629aa17df04815c4808d99bc39bce1dea696582eb454fe407a4f09cd2630996f88d992a52ea67b22e051f"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "e97ad0bed989d3249c8ab92a74a9a10eacce89cd8e8ab8686f34317b2d6ddef801b6705bdd7ed8e673f70499cd49b042"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "259da5f54c7ce348280ea9e69c14b18a7188d377f63a379c8ab4538756e297bd"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "148afa310e8a060bd20d7b9afac49e2f57f2c8950d1291ca9d3d29d183648800f8f61177524f09317d1c6ea1fba5b95ab616b3143fe6c8a40b6a3878cf8177c7"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-api@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-api/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-api"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-api@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-base-engine",
+      "version" : "4.0.0",
+      "description" : "The Base Engine Camel Framework",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "e01d12c8e2f4fe6da5b0d110d045f9ac"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "7e02d1c03c7d6047560985f8389504976f0622c0"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "5d3b60d9ec5af6a01f1c4ae41067cafc02fd1c91cae0c1bc38e1e4ebc6bb42de"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "8677395aeead88d45d3464d3d2423c7cfe53cb671b1f325d1d709b12e1b878476de4c4be28467fab94b3bedbe15a22444e7843329e3af600b07c683ee002b667"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "64063ee4f564fe584a6b26b6d8a9965a92a428716a50e68af1ed9198bafa4c94fbca1f95ee8e783910fa6337dcf7b315"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "0be88ab43a0203c55af6fa1377fdefcf12e2b41de87d63a3ae71d082b7cb577a3078a6a8d8ce1c30dd162f614460c99f"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "b8c4f6b2174d8f7437a3cf7cd133a51bdafd0588f5fac4cd4dd97cac2e914f1f"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "d13bfe47b0039cc38c24e256b1e2da162c404af4628bdb461a6e4939dba7d28a58705ffde78a102999177a7b057437223e7d79f6bd2ea7d2652ff01be7f5a04e"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-base-engine@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-base-engine/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-base-engine"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-base-engine@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-core-reifier",
+      "version" : "4.0.0",
+      "description" : "Camel model to processor reifiers",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "3eaee60ffc3311cd1d9b58ddb7851e03"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "ec176341ed48226cbfe1cdf0ac4925e0d95786a9"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b6108ebe2c4c7907b99c5ccc53e417c1b9dd0bf1420cee29ca896b6f6266846b"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "21d0012d6de6d00cbe15f9d6618e10dec076dd2d8c41d78517de053f187bb1a062193346437390b8fd25bfc28b246cca91750c444322525e7ebd4d09aa89b92e"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "b03dc6d073ba8efe4075f072a9872ce63d3aaa9b2b28698e05c3b0a666bdcea1513752928335b0f258f1e7a69ba03913"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "111332fe0d698c6d4b4936cbabeee98188410f54db17f4a212569f708b687c7d9ea175790ed6d76f12ee5ad89c421878"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "7dc0e67a78836c993c7b792a2f9e9bd9f6dd68293a359d2f47f23594169164b5"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "c96a03d933ec5055be6dc6c712f2f8df2dd295cc3fbf671f1fd6c43fe5245e695f2404e4bcdfdc565589b37c635fbbbccdbf6341eff4885bad1e1f9b470f3c2c"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-core-reifier@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-core-reifier/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-core-reifier"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-core-reifier@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-core-processor",
+      "version" : "4.0.0",
+      "description" : "Camel core processors",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "829f132e9627bc1d2ab1558f602079f6"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "7afa8666c54c4599101ac39e3386abbee9b48148"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "7831464516a41e72402b45e509bee291259dac99409db4966948e10ae569b0fa"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "bdc87a0dea9a91d82a42c0bc7de5ad951e2ce79f148cf9e9f2c05339f1f9a15b66ab68030330542d6e385e7ec58ebce89895a8c202d873a2af6f47fd28c4f2e7"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "dacb49c6b2cd662ddee643ab5876c23044d2ad2a17d70f625ee9c71c664707bbf78793407e8f56e67cf832adebd0a93f"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "41b0d4d397ed763f210e5fff51bfee8282bc940901585ff63882a36a25d0594fc89e8684a7bdbb903660e75b7daf4a2a"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "ce9df55738b29866d7e7d3f25c87962664ad10d50b95fb8f5e09f29b98b52d14"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "3fefa76f024fe1329976c4fee7df21d547d377397e8b8f1c59d7517a72bfbe8c506a08b34ddc0beafde068372c00dddd1fd7f81e854fe904496ca36789caeeb3"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-core-processor@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-core-processor/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-core-processor"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-core-processor@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-management-api",
+      "version" : "4.0.0",
+      "description" : "The Camel Management API",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "3f2ce8e463ba816691dcdb1b67e070db"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "45142fba45e16f05dfff03a99348aa528516b871"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "73469750a04395117923034466aa70c63c39db5f233c2fc1f963c1a76e7f0c8f"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "85835723550716579c36e660a069e36b4c60e5d8afd0df693122cc07a4562f992c62d26042d73fd93626fa2734ee8a4adef0de55752502f8f7d70f8a24863e16"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "c4762edc55e1ddcaae1530a61f4aafd29731a6ddc4e647b39244f7153f9a966c08eb0edc4e363dbd38a7236e8115011b"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "4be7ee6f81c75d161d0ac95bcffe57f1533296c42df87949246c65b2f57c66a29905d52eb1db4c80fc982c37756d6287"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "0d5f93588a82144eef28d96a6fc50a3ee90d6f36f43155a5de4820a5d3642d49"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "2f48ab4de23a8853e20d80f1fd79ff31547ed5826347e927b110cc36cf2766d0541bb554f85c8f22deed6f400ef754691ba37b874f9d82ca447b23aa7ad301d7"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-management-api@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-management-api/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-management-api"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-management-api@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-support",
+      "version" : "4.0.0",
+      "description" : "The Camel Support",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "ef4ec8d07b08d4b6e01d6f6d7edfd22a"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "1abc970e452b4b7808c9ac9c71af7df506836b12"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "962902f96df8186ad688515dd77745008baa0aa3268f2aff578962a8724481d1"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "2559edd1a6aed137d65dc24c06118c804001eca0a2ed980e8a436e8b6b0d93b5efde17b274d22186f3109077e43f14a5443163d63fe6efa4421632fcf61551ae"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "89045baf84dc982163439ebe7a1ab433e5c0aea880fc51ce483e63ae12b393a54f277c38cfa902203182293342cc0a8f"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "4cb24ed0cafb70d242bc1245f18cf4a0f4665a98ad3954a95bf383fdfb86f0f7f01070947716f2a935735db68b147167"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "8bf121fcbdc4f7b4892a05af14ed1393e85391a767e761fb5573db33dfdf2479"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "31e9c67bd9ab571633f93a2edc0704037c790291d256a6698d219e324b5022684099ac7d86c540925f453ab3df572ffe77e2e0c562a7b4c1ffa5c43c76af6f70"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-support@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-support/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-support"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-support@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-util",
+      "version" : "4.0.0",
+      "description" : "The Camel Utilities",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "d17901b74a51f06dc1e0146195886f7f"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "b5dd3608a99da1f5a4742688ace57b33548ff407"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "28de255be69910cdbe59f78e0bbeedf6dd6edc3f515479fc044b68ba7ee92139"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "03bd53d90f6885cf3280a4fe26656d8320d0940d7fa4e86ebdd8799ba10f508e33867acf7c027414055414ecac74e37c52bc4e0a8cc1290f6a4fdf889d03eb3f"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "69653ef3ac9265ef107e6205d3baa83414675dbeeaae0e09e5eeeb072a8d80ab2584133046917f566616e9c1493e58b5"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "07a1de6f302bd47f39c4452e24a616ac224847ce879d391422e7b718919349e4cbfcdff76377a291806e8892a0c72cfb"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "77ec9d0927f829f924271f69048e38ed23258a248c5942294959499ce5c24c3c"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "94f111b31774ae5fbbb03c72f85ee19f87f524e11905791139cc33f56e6d2c1ad9fbbe7fb45fa484bad8db24a9aeda886ba794c2e8f2607e702b7e8dd4f477e0"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-util@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-util/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-util"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-util@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-main",
+      "version" : "4.0.0",
+      "description" : "Camel Main",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "25b81090ee96bc06bd99b9ae866978b7"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "14ec841dbe289d96c3db02ff7d1ec64de2c70771"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "1c9e09db312dc2257872ddd499da7f1f70dce69f697301af99fde1f81f90ee35"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "ac9f3d7bad6145810366c675c374082304c6501fd40caf1fb480eef12d6b481dc004fd6c3fc94c6f1e44d7f9bc364c1fde69850c6885622eeb9c65b40862d41f"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "375ee4554ad67e2f6fe84899ef315c0d4b9edf965c720820467828f2bf51d0001b13fd2beb30b55827216766fdb12068"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "ab09503f30e75dbbf83973b6c92cac6ca9cc22d83d641fbe7cde325dc4002da7f2e325fbbc54d030a9b05a1fb7b8ad44"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "159727c1c38ec452249911c5a4b612f9e101e3afe6613d07c294ba20bcc23b28"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "9c96f58e7e5f65dc60b6296603733d8e425d75c5c0d45a6d8781eeedeeb71777e07bae3e4846a27b30806cac163f65ffd08fd4ac410fbbeabaf4b10725c91671"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-main@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-main/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-main"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-main@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-base",
+      "version" : "4.0.0",
+      "description" : "The Base Camel Framework",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "27bbd5cae2858b94a806d114523c7eaf"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "1c3d0ee18465b808a7bcaf99a8f6b834b150ae7a"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "414eadb94a56520b458472b79bd921ee2044d27764a529af0043832ad45e898c"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "4c334ec50831deae32440b1878be702a6cfd66135124a2dc2dfa9b42a6c40a5b02dd4909877dd6a39bfb70c446feb46cc077f925e25da33f956a0fd282817909"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "3b8ad4b9608d009dfc2864bea2d4d58aefb5b26a043b9a5db371bec4ff3e62d18efb5874a608aee3bacfc4a9211f60af"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "0c7b67ad15f84384c667c860b74e048efc018454efbd2cfc8e05171b7f95abc7de9fe691ec16bcb0addc6ce6327060f9"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "066e0581a18b471631afba4779df3d4cf1b228f8a0ce5f86ef91598faf584c4c"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "51d3f3c7deed885ee73765b47aadd85588f4e847ef2e5e215f96f5adbd08c08bfe338227b22aa5fef92c7b3eaee0c686469100a0a30eb2057a2e8858cee0c659"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-base@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-base/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-base"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-base@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-direct",
+      "version" : "4.0.0",
+      "description" : "Camel Direct component",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "a9ec5751c4a1fc3e15fefd554faa655a"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "1eca99c30139a5f5299f50c5ca0aaea24fe1e738"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b59718cecafd8848dae6bbb66623b854da8f32a023c6f1d776e6879ad7f538fe"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "93b4ba080fc1959e41e4ad8291d70f15426fc6c74569dbec72b372372ff3511c7709e85c10ce34e942d4dd4fd32672bb438a03587b4391c068e877ca2690c498"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "c7245c99b48664d5d3a1f3e4d310006c01c9d02c3d0a2a0956f4a77aa76034ff135e488b19bdf763cd8d139558daccf4"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "5b7b55698eba73ee42eaf804283bedb947168900ae4b1b8e902c7dab372694bd9d0961686043b43d3d649bd58ccf410d"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "35bb28f3a255b9f4ba602a63d762001f79b0a7f83a1ffaa14ad126d64c42759b"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "83cb9c4fb079b0af7f83880bdce7fc971959bb81ddd3b55d07c7145d9b56c953e17a981abe381ce44282228fd1fa1b5d19fd4ea9d589ddea4f8887785c59f418"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-direct@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/components/camel-direct/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/components/camel-direct"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-direct@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-seda",
+      "version" : "4.0.0",
+      "description" : "Camel Seda component",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "befc53a9d61bddcf900c4b27745f7cf4"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "f68e1b73cc66d24aa7dbb77f5047bb79d12e9773"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "57cae423230201ff83fc992cf235b7c0099cce48db79a8a27a600683b25bc3c5"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "ca665d557b2c4616041ec79736e6f452b71111defb1d5adc1b9a21df90a3927d12630c4ca9a99f21063ad16107f7ea5770f61cb02d422418e0cb2e4fe9aefaba"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "2e6bd2643dcdebc16f2aaf02559291d73f9bc170c32360f375ea7df7023461c063c8889c3699ff2d60375483528f8b67"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "d1524f386a6c0995e4c31cfa7aefcff573307afea2c4914407159291567c705ac44b6916f876f10cc1d70846ffcbae06"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "ebe30f6200621668284d900c8187027830f772cfb75ca9954360d5dfbf73eb32"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "79aeefadcb33b4efa71e8927f560f1a8c8231fff38796f0e1d5e1306d8560b05a4054fdfc9ea9e25d90cf60e45571053110819df689be58cddabb3cd95a30b02"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-seda@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/components/camel-seda/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/components/camel-seda"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-seda@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-kamelet",
+      "version" : "4.0.0",
+      "description" : "To call Kamelets",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "7b4a0fb4d82613c5ba2bd4ec6c6bc638"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "744a5f989ead11c3f141c53388bc62ef714edf35"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "2bcc4a268e57e25f47e3f192c89fe4b790aa4001fa240e87cf0dfaa812787523"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "191f02d7eb318246f61f86b6ad9f8e1fceb3412c7968f9b7133f3f41d6ea7aafdda8a6b7000ba77ed4b959c889a3d98a1143fe0140e474edbb785af7ae9cab42"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "930fa8eae56ee49215aa19be6adb5869da30ca71d83540fc67c3e747dbf79b0c9eaace93c75eceeaae4af93b35973d77"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "ceae127c17e554c41f241597578f3aacc9cab74cca1442c548cff67bdb26460ff19d6ff1485a0de80741894d1000a779"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "f601af2d5784c941101903efaa53d097186a9d452fadd73edd6f9dafe71310b3"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "22143f51612b902b34e696515427ed0df318f6c554032dc09ef302cd9a741b8e8dbd2fc78aa9c4de89fb68704c96e4b51c0c546e274715c3a67f5d23c4ac1074"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-kamelet@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/components/camel-kamelet/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/components/camel-kamelet"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-kamelet@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-core-model",
+      "version" : "4.0.0",
+      "description" : "Camel model",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "a6c67428d93be2bda4ae468f5891a454"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "c85b6ea545c22305a7ade11d16fb3754454feafc"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b2efaf772f333c7a207e80e2b10b6daaa9038ccce16b8afe135dcd6b936999e3"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "c46bdb2cb6861f7f855cf240d6505360b98501921483ffa4a3579b785a44423976ce2aa980daf3521ef14b93f882da4fc5fcaf0e35518f4094a9a8052fa4b9ea"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "7cc408b74b9fbc2f390e5180be013ce47e9f97165403956fd1e2f8c7835304e461cf4da9eb97cbb4cd6377c44c933fab"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "39a7188f2c02bea69742968b595d3a0d0904b7bfa366f5696a74657a91fb864ccf2181b066e4fb9fc78a9388e5cf6bf6"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "297abc8126ef5c73b2493c2e7cf9ab659e467eb24c08f999343017001b46985a"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "874308b8976389e58bfb2e7f25f0258906f2219d2bd6f0198329dd47ba7ec9ddb16c53014ec3a716b7342f6da5a75a5b2ba6dfac3e067c2d83560ff1b30531c7"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-core-model@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-core-model/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-core-model"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-core-model@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-core-languages",
+      "version" : "4.0.0",
+      "description" : "Camel Core Languages",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "a86b3c230197a34570166582cf771614"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "ab59acaefe8c450bcef671a2023112de140d5059"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "7370c13fa6e8896e865eb1d4111f581ebddd3d23d67f9cf2c3c1ec0a049deaf9"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "8ca34eb0ca8d127a297da56e30b62edebe284d21cea070505ccf74cd9cfa371ac3a58a9f19276aec5e951440fb76048a56ea66386caf817f53f5fb77239667ff"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "56abe2bdebb14a21d9eb58f086540fead4ed241b4d00b4195abad707c2e2dd415a26bf650dab0da3e56f49993c05647a"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "34b0e79d51b5784fac20de4a556b4ead79e8dbbf8a9a1a2178a25c2e8ba3fde145eda96e7d35ef7ed5decd278a98300d"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "d51865f7d373b9a02a6f7234ddc646c5ba50e8d0a8f11321d7060e3301a97380"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "67854b8dfbb3c4e70dfb9c46dff177fe6b4949604c9ada4b35157193dc99bf630f9513bee3bdc707c53daeff9dfb3bf20919f0ab49627f023138f492d20f87a3"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-core-languages@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-core-languages/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-core-languages"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-core-languages@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-xml-jaxp-util",
+      "version" : "4.0.0",
+      "description" : "Camel XML JAXP Util",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "1ef5346f26180a9ee979d7f009041e86"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "7aa5b10d80828b730e32fad90079fc9049827f42"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "ae1a122b2b9e22ff218b324a2c9892c1d97dfbf596ccec4f6b2a2a8690e3f6e4"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "a1a9f0980d76f58084774fba5613684e2b07ed44ff390893295c497434975cfb54c0dd1077bbd7c1a8992c78ec3eea30cb9ff093358949348fd34ba7dbf9f530"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "57f5e180101f80f0fd867865ca3a56c25ab7bf4c56cbd1de5272567e83a098d162bc4efd1ed5690655a6282cf47b5206"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "af2f4f7b32606e2e957cb2a886e85d2102b97fe317a5e518bd1d2861f256a70c2728036e4ca3b6f41b525ee0e94b9c01"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "1b3e18475d89e11fab02f87df60f13264dd44716c5920ffb259fb9138378797d"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "e4ce967931bdcef4db2752a9a0ac3ab96db054ba126a5e7cecb8a7b622c42d7a0bf0110d1367eafebac9200df7d5a8140871ebc269bff752f76d2d2f6dfbfa5a"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-xml-jaxp-util@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-xml-jaxp-util/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-xml-jaxp-util"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-xml-jaxp-util@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "QOS.ch",
+      "group" : "org.slf4j",
+      "name" : "slf4j-api",
+      "version" : "2.0.7",
+      "description" : "The slf4j API",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "403dffa46cdd2e3c82da19df4f394a4c"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "41eb7184ea9d556f23e18b5cb99cad1f8581fc00"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "5d6298b93a1905c32cda6478808ac14c2d4a47e91535e53c41f7feeb85d946f4"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "216d2cac27d501972c888f94dfa747d700b80d60813884b6ab4b12c6a3b17ed0c21a1d27e1aa4332c97c828f20039e3913d2763d7e1a3cef36ae4389a276e7a8"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "c25b39f418aa726ba8405dfd9b356131f89984e2ef5a55a724a2abf3b7c78443f671105835161d2414d602cf03da9f2d"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "f33abfaac21badae6f85d3ebbc6c1204fd7fda3bb15173e763fa8cee95bce6a8270eec2c8f49343c66c8d2767bc317e1"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "6e00d4b264a2afc4ca4e98f716ecece66c32c626ca3f8c5d56b22092b6fe417b"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "ad7b9142d370fc532a07cdd43881a129b012ff50e2bede3ac27d9bd31ec707bf2f45e82002fa59e962955cc38ab73cdd77713fca50cedc926c046f5617c1285b"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "MIT",
+            "url" : "https://opensource.org/licenses/MIT"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.slf4j/slf4j-api@2.0.7?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://www.slf4j.org"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/qos-ch/slf4j/slf4j-api"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.slf4j/slf4j-api@2.0.7?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-bean",
+      "version" : "4.0.0",
+      "description" : "Camel Bean component",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "7df8eee8b40331c9c5e8dbb5aca712a8"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "815d543ef167f51bd76cae0dc89e74015b05d640"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "617669bb39e4d339f5d25b365ee3b4863cd6f845ebcdc1f134e5d88e3965c6dd"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "12b755e23c177a08554118431f1f50c3531f7f59f27e4b8ea6aa748ef902d931ffd30da30f24768da5a319515b8177a86b4c963fa82602d3af9f839f711f1532"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "f9cd54b9b3edc69886556c903aba16aae72d6589825f7ba7f5b6c2cff8805b0bb911609d1c570873163e3eed2fd0f398"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "71f9c6be3ce49f6d8ab351222a499a80a1717b85119e0ac0bf4a2cde4f86f769689bd91aa736b31599083e72306581f6"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "c9f2ac06a9105c0f303bdc9c875c2cbf0aac5968d04b2f4f3e542fae77da7047"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "8ebbfe956c66a097c43829b59e25dfeb0d87aa444c6decf83c20619e43fee6e15c9cfc5474a62d5bd1b3f0e19bbd43e543cbebeafe31e6ac3260d11195d15a4a"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-bean@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/components/camel-bean/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/components/camel-bean"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-bean@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-kafka",
+      "version" : "4.0.0",
+      "description" : "Camel Kafka support",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "8e960746a991dd890b971debda78b9f2"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "bb3e15ec1fe792c2cedfd7fcab208f9eb44566d7"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "c4a7b51fa8f9e27e5d2c7967e282390739fa5ef7beb7280005c6e99cc83c76f2"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "54f4c3800506f465374af4d519e4222512b1bdad84e39046541876011e814b9671fd4f5a9255a4530311b25af60872dcf1b705f1ccbb3be30c884f72bc0bec48"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "e63f0de48b432a30b283e7c2554ce2d65ec3027d873572b91883089579d330d7913f841269cf31d395b642a190fd1c76"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "e3f3dbc145ae32ef2202aa9fcc1188b78288700220f8cd94a272f5141988328756c3b2f0724a3fe6d9daa26439efa25d"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "bdb62ed565d281f54b0812a6c5098404973651fc03c038c3dbf028935c0b078b"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "25209f80098d2ecfc8b1af8b4ccf45d4cdf97191e5d91b71c92bcaa05c1055b3f69e2a2538dc7881b9a863518cfd29aa746ed05be0752d3c8654a117773a5418"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-kafka@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/components/camel-kafka/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/components/camel-kafka"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-kafka@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-health",
+      "version" : "4.0.0",
+      "description" : "Camel Health Support",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "2f22c83a4b90c3c997487409be7ed9e8"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "c14236a5498d49cc7dae12ff035396f0df3ac92f"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "4177a6ac8f658b5825ab45b93165118dba556cc404b086a45a8bab915c6d974d"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "83a27957999f9f8081e591cb162d9724fe96e098fed74993e7ab0496ef8bd2aae4bc58819375c407b79fa0f55326045afcee43fd21a7989641e2145d135d3e9d"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "31c01c372e203c362c1053bc31455789edd6bbacc7f73a5ccc90b82cb45f05099b1ff2d789a1a1c3305cb28324d8b2e0"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "73daf3e04aa5dfd91744b49c558d658e278a7cb3b8318e6d0ef3df3ddfe376ac3250c444efec36af878eb46e7415b4ed"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "28e2b278681c4ee00715b4c22af197eb97dddb0df0fd7b18dc6b60576fa7ab05"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "7262fc37ec5fa23d76920dbe8747e473cd96605ca4194dd646a8487a754ce99a9ac09cbbee247c13605090c8887f9e2cd7696d43fa669f520d1f43a6721b0baf"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-health@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-health/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-health"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-health@4.0.0?type=jar"
+    },
+    {
+      "group" : "org.apache.kafka",
+      "name" : "kafka-clients",
+      "version" : "3.4.1",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "d75ecfc233fe106c6fa82841edab7436"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "a2f55251deb3d31a21903a0cfbd4d1fa6b7463ca"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "9d0a9058c8ede79db6e54ae378ed16fe8d1bead2894635a4aa6aa0b7981668c6"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "b111e1980fd6bf65ca546f6b517fb31a140b19b4dc88646e723b11b54b521e48643f33aa341f47b3111a4556af131200f80c851e1b68d37cb4e747e283eefd7e"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "ecda328bbead755badd1dc8edcfefb5dfa64a8a2e6aeddb27e55ed15d9bb7fe4f7a392c4a43b0496157bf77cb588745d"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "d57ef995594fd7b72fce50cfb868f228bf24592bde5b199518bca117e5b3f049b7f4a280485df23bc785aa24b5d65926"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "3011633c539acccb0c20a832b4c8a282e953384844cbe6c86c30374a5a5c8774"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "666d99bbd8cbb900433d8076d5027893cb4c9d2c51a7ba8be69ec2d97d1104ed32c6bac5cbfdebeec4c646f2289d95d354653c9e243b806ec2ccd7a3fc952f7b"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.kafka/kafka-clients@3.4.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://kafka.apache.org"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.kafka/kafka-clients@3.4.1?type=jar"
+    },
+    {
+      "publisher" : "com.github.luben",
+      "group" : "com.github.luben",
+      "name" : "zstd-jni",
+      "version" : "1.5.2-1",
+      "description" : "JNI bindings for Zstd native library that provides fast and high compression lossless algorithm for Java and all JVM languages.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "2909788860e8e3ee29d51b327a43ca24"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "fad786abc1d1b81570e8d9a2fc8a1ef479bc27b6"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "93f7e4cbc907c2650f89f9f0bec94873735a58f1e4b66a54973294e4ec1878e8"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "92174059714b98d4275dca1b057c857766267afe6ae2b27bfdfe50395cb90a3ec973032977a074c5ce516a3769336e6bf63d3bbde95bea165c409f1c990a651d"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "cdc9284a4537fcf83166bae1c4731463d94ad9615f91200c4da6368ddbd769314e87453e9114649c694966e6c77d4883"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "7fc38f70a3160e3a3e308c56e8b3bd5bcb42567f4739abdfd301f9e5ee74b1be0d1d072f6cf07270e61ac0a6ed6bf8d8"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "3d7fdef386e28e112621eea44bc6d6798dc68c8cf690acc2b74db5d221bc5faf"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "693b3b3d29e63690ae9c1215cc84d8e77f4de28e664eb184bf9ad4697389b8230f75f490ba653feb191b3e039eeab9415f3c56b5d2786d85e48dfd8035df4e14"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-2-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.luben/zstd-jni@1.5.2-1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/luben/zstd-jni"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.luben/zstd-jni@1.5.2-1?type=jar"
+    },
+    {
+      "group" : "org.lz4",
+      "name" : "lz4-java",
+      "version" : "1.8.0",
+      "description" : "Java ports and bindings of the LZ4 compression algorithm and the xxHash hashing algorithm",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "936a927700aa8fc3b75d21d7571171f6"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "4b986a99445e49ea5fbf5d149c4b63f6ed6c6780"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "d74a3334fb35195009b338a951f918203d6bbca3d1d359033dc33edd1cadc9ef"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "98d59086a6021ca571d9c1d64b715e43044c730e1ac563f514c40cf44302615d30378b6d5cc69990446522de6260dc8e7b303e3990a3139dc326d058dfb6dbd9"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "8e3f2acdbb41a00c4d9cc5f328e63fb626ac7c6c84e1bf9502e2fcc76a591b2b819b2d27b29925ff986b95c297b30e2c"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "ec0d6a00760d0a4ecba13a41785d6ae57a64552b1687eaa3e292b3054bb1348e49ab8a938197ff126f9218c6cb96ee1c"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "7be684c102891105f66d378b61ea1297a392c1618b5aebf7e0b281f55217c206"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "0b2294570ea2bfbb50ced21dfa4bad956467ca447e9ab2dd602a3478371bcd0e9f13d2dff74d06827a28882409612cdde00bd91267be05bd3510c68268bf3166"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.lz4/lz4-java@1.8.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/lz4/lz4-java"
+        },
+        {
+          "type" : "vcs",
+          "url" : "git://github.com/lz4/lz4-java.git"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.lz4/lz4-java@1.8.0?type=jar"
+    },
+    {
+      "publisher" : "xerial.org",
+      "group" : "org.xerial.snappy",
+      "name" : "snappy-java",
+      "version" : "1.1.8.4",
+      "description" : "snappy-java: A fast compression/decompression library",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "3aca6cae2cada8442809bc79be3df269"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "66f0d56454509f6e36175f2331572e250e04a6cc"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "24c4d1fc1e89e078331ab8f401a99cad68599bde4a2e4516042cb548c51b1c3e"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "522e98415b6e53721cb837696dc23576bd63d75af643df7983c1cb6b6e6b5a8650d395962467b6c651a66f5850eaf039f2b37545215fcfc5f4aa031f632c4cae"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "9edb73d6304344fa85c21c858d80cb5bdf7a612b7d0dd55ee1ca8e43ddbbfa7344114e93d1beda84cdd076a9d752407c"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "8c6e457f5e9e0d8099a91659ac09d3cd5a953ff11e386738049e0bfbe3449f4657a7c8ccbcdf9c50e73ebdbf01d6aafc"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "51b5f74ef2f303aab17a1396afada54c581bd18204c8d3fe136ed9fd05ac577e"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "ca3133b812890dad36943599d6a7af0a8aab9aff645376afbfe7348996654298c3473d3fc7a1aab542b4e3a7dd1d44a897572b8e14ceec99333c048ea9e2274c"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/xerial/snappy-java"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/xerial/snappy-java"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4?type=jar"
+    },
+    {
+      "publisher" : "FasterXML",
+      "group" : "com.fasterxml.jackson.core",
+      "name" : "jackson-databind",
+      "version" : "2.15.2",
+      "description" : "General data-binding functionality for Jackson: works on core streaming API",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "20ac0d0526a456274409fa852eb74087"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "9353b021f10c307c00328f52090de2bdb4b6ff9c"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "0eb2fdad6e40ab8832a78c9b22f58196dd970594e8d3d5a26ead87847c4f3a96"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "edf622f3d2bb2cdf308875e467f28eafdd581c6ad47992a2b49a2c803b597c7fe4330c8f887687599c8a6a529d8b11054f8b354b7ddddd2bf904ef347d4f1cd2"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "cced300ea06748cc30cdabf1a0a8e45749d3d2a52740975acd858bd13b83458d535a52fc4cc0eb8991ebd3638b9688ec"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "c4a29f5075cc31b52aabfc8f656ee761b075954fe89469e76aef7a563d93ee71653310967b68f89ce25ed26241c0bda9"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "400677b87f766708abe38aea66c8564cb422cd271208e926a0c2eac99b64cd92"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "0a02353d0afa97f7cb85f1f81ee221cf4425fbde1e2d1b6b7bd8fe0d5d2fcb5dbba8b6fe9c79b500c71fdac8accb77eccebe0853fd8c37bd34aa578796b8a81a"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.15.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/FasterXML/jackson"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/FasterXML/jackson-databind/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/FasterXML/jackson-databind"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.15.2?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-xml-jaxb",
+      "version" : "4.0.0",
+      "description" : "Camel XML JAXB",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "8c66bf2310bb2287e874023a31188b6b"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "70a484317c66f4cfd20a49dce91335253b52dc49"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "6f504a169be9eff3f8c66f734966bbe1a7c492492633aab27b3023ac31d0c04a"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "7fcccb07be886ffad3846241674a64685a71faa1cb80dbd059098038d3e5739df07ec247619377105f46a9739e7cd1b7010adf6cb678b5bc49e00ac72a049400"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "4f060d03999aad3f13d1c6e427a73c9994d04ade4a0a31de2186e8189267a5f8015623907a4a9c38581143bdd365d79c"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "03241a6f56203a34814e70f436627acf2f739baf4044636f093dc253d1a580a2ba7efd1f2afcb9368fc371615dc10a03"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "9f82b7524d5fb3a7e6fc97af241412401fdd8f082bd2b51ef075d31d04a61ff9"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "6f60a55a5bf08ee8c568804dbc948238d4428b2e13226575a5e3693b22e8a0e98268185554e108f05b0963951c4a36bb84f74cf54612a173f9d940baef4b4a88"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-xml-jaxb@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-xml-jaxb/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-xml-jaxb"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-xml-jaxb@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "jakarta.xml.bind",
+      "name" : "jakarta.xml.bind-api",
+      "version" : "4.0.0",
+      "description" : "Jakarta XML Binding API",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "b5132a66e2d3a60904f8035a1f8a34a8"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "bbb399208d288b15ec101fa4fcfc4bd77cedc97a"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "57e3796ad5753640088f5f9d3c53c183f2c250b7dad90529ea3e19a5515aa122"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "3628ea2ce89380f3d1c09aba611d5b1cf0b53e2a2f87689112e8153b9409995ebc9c6ab1e0e7cfcee194c8233604473bcd8e7b6c4b2aba4e0ef220332208ce70"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "92170801cbeef42dfe5f14f008422fec5e17e4ef172eb2fdfd6d9f70bf269a0609b39187bf0c0f0cd6aae11502d28d37"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "559bc1752bcb888736fd48354363715676bff1f8b541239308d5510a19572430a5ba553cf7b9460149e9460b54486485"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "040475238bcea57cc293d184c25af8f88e058285e66be3e48469561fa820914b"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "49e69f0794ef9d4f37a11a847cb76f196b03ceb02858904bcfabd4832f2d0f51d21b1361325fd75b07f2195f83994e3f3bc519ffb4f9e227618a8a299f942d7a"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/eclipse-ee4j/jaxb-api/jakarta.xml.bind-api"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/jaxb-api/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-dev"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/jaxb-api.git/jakarta.xml.bind-api"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "jakarta.activation",
+      "name" : "jakarta.activation-api",
+      "version" : "2.1.0",
+      "description" : "Jakarta Activation API 2.1 Specification",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "7c79641566f97305e17c5f7b9bb33fc3"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "a58861b5deac5e151140511cf57d6b80a83f2d20"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "56e8d994095fe49c28138c60291482f66f18d12ac2b720e938697dce6a3135c7"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "53026e23571e77b9696cf02d1eeb20295b7199a169c12db9807f2ef2512eff859b37108b96bfdbcd2c9f4a66728d12ad8182b5548146897cdc2ad49e7b2b2ebc"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "2e835f36fa8c90490cd4f543062f3ce548175fc97b3dfa2ab3c63f2dcd59c57060a196ace53933639399657f6aec9e5c"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "bde529fca53e87d22908b4794730a03a2fa29b62ba8cce07edd4e10e34d98cd43a7b0e449241010ce55e962ee4140837"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "be51f4c74f02fb8c98fca209dc5d33ed89dfb240c882e790974c06bef563a6ee"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "835e222a4ed4e31f570afd5b10b1935ff8fe4453ce79e340cb021229cc186586e9461411ce7749798a97122794bc3a1965ab770f9682bfb68f6b740e41c50943"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/eclipse-ee4j/jaf"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/jaf/issues/"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/jaf"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.0?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "com.sun.xml.bind",
+      "name" : "jaxb-core",
+      "version" : "4.0.3",
+      "description" : "Old JAXB Core module. Contains sources required by XJC, JXC and Runtime modules with dependencies.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "30ad78b94eaa1e3e2aa587f786cecb63"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "f1d7c66067b3d85fa17fd40a9aaae829250f3344"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "d6c41bb75b14a7f44da3d3cc53fe62567b9f413037baf603016bcc5b7cb79b47"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "b914304849c4b05c008bb304645545488a081c1490610be40a3f71c35f3fd085a4bc6193243c34aad050ff3e95f011dd1db10291990a3f6953879c77bb1768aa"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "eff74b015c6c1ffd44746bbd78e092d4024d940317253aa6bf2aeb2f4eb6f00a69a603a66d2f228f10a313eb55c0575d"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "d1cdbd43bf6c263c12b9b53658c424f28b89828355111564617a85a26b240c4e297a677133b80cb799336494c44bb91f"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "d052400ed874491a3d8d9cae95318094cf07e90cc68eaa2089622bcb2788759c"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "c5e399c0fd67db414e2664bc5f4fd9a9eaefbb0fad5e7f23df44227fd48c32835b9dcee16d0b6915a363d677ae9b115e6927814a005a7eab83e7b892fb688f33"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.sun.xml.bind/jaxb-core@4.0.3?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://eclipse-ee4j.github.io/jaxb-ri/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/jaxb-ri/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/jaxb-ri.git/jaxb-bundles/jaxb-core"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.sun.xml.bind/jaxb-core@4.0.3?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "org.eclipse.angus",
+      "name" : "angus-activation",
+      "version" : "2.0.1",
+      "description" : "Angus Activation Registries Implementation",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "9a66564224140488f83f645ac32d4169"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "eaafaf4eb71b400e4136fc3a286f50e34a68ecb7"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b226761815868edf8964c1d71e6d2d54ab238c2788507061b4e0633933b4c131"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "12adc46207e6bb01c82cae962260c4e573ec24058a93e9f8c1fa532abaae31665f8e3fee870f3fb61532ca8449a1ae7bd1d546caed9de468af20f008a39363e1"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "b2dc7efc13bc0fd8ac4be9af1036a5b10fbf2acb16dc3bfb0c27ef4af15902259ef997eae6ad71f141e00d2789ad7213"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "728583e6f733a3d8896c6502ac003f05244c935d421186765baf12ee0662f4344953de80150d534a038a36df589bddf5"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "ba9ba82a808ddc4b0ee01c75ffb46dbc2c31d17eb10cc98005c3e0c717011c56"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "b99c8aef5bb02f200976e5a63257829fbe651028afef5208b7cf1d55333420d18df8ff71e6a70b5699156e5be6fc6019c676333ad74e5ba0ed4b346b1cadd027"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.eclipse.angus/angus-activation@2.0.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/eclipse-ee4j/angus-activation/angus-activation"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/angus-activation/issues/"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/angus-activation/angus-activation"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.eclipse.angus/angus-activation@2.0.1?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "com.sun.xml.bind",
+      "name" : "jaxb-impl",
+      "version" : "4.0.3",
+      "description" : "Old JAXB Runtime module. Contains sources required for runtime processing.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "0a02af7421f4a8e3e885c533ef9c77fc"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "8910da0801f9f57cbd2fcf3e754c162b46374081"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b87ecac04afdf34f459197f493ab6e9efb358dee3540c05c62e37cf9bfb92b6f"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "96f2764d0e34a292aceabd56d8ec3d20b9c70da384c3f5cce73f42be89fefe790af14e28fd643a0f039d02d7400ffb9da60c3dddbd247e0fd8868ddcf3537266"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "1362fbd81fbac900a1ac65e46180251cb76d49ad10712932f9b09cf5a875af63f2435d88a7d5c4fb25d73c0625ab7ac0"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "ac9ce26521357d659a79266866c3bcb1d82b6b5af759a40e57362d703098462c1a40d5e2e0fc305fa31a8c113ca1fe88"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "a70e63315fb203d8e1f60100411d83a547c1b8fa2ce5e1108c0713d983917176"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "10a126587ba93ec5a021878ada2ba387c15cf13647dacbfbb1d5907ae5a80278a81bfa97e503998d03b50da17ec29f214e20b2597237f88f710566e86fd31bd2"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.sun.xml.bind/jaxb-impl@4.0.3?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://eclipse-ee4j.github.io/jaxb-ri/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/jaxb-ri/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/jaxb-ri.git/jaxb-bundles/jaxb-impl"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.sun.xml.bind/jaxb-impl@4.0.3?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-xml-jaxp",
+      "version" : "4.0.0",
+      "description" : "Camel XML JAXP",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "2fa6a271b3585a8d6d86d1d1dbd497d8"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "45dd77fdfcc50f306bb11c143068706f35f7b71e"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "adfcc0f021770da9fae9c7d6915223ea75029654b297b12d70ac7d5b69a9d684"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "3fc8f928dbf50baddbc406d479cd64c841436dd94b378fa44443ca0e59ccd5772f889d2a40a81758a0d7c3dd29f064cab4a52b388cac9afa38194c75285488e7"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "6352322084a92182c7c297f1a3f452523d4a4bc183505df8a5708b7411b1dc7307f9cedcb2378926078a6f9d28791188"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "e856c78c359d893ce67859ac41394b065a9b45ab44f3bfe73e537dfebbebeb13ececa4027ab371d97e5a62dbda249605"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "f2b45c505fc1e32c05e873335e6cda6c054ec264f3fb1f44868c824c9a5ff1f0"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "6550eec8a32a0d20b672a124f0abeaf44e03f13728896dc7e9ed9f47dce8919a31350b0b78ede6d9739195982afd39c036e0aec7cdf485ed67ea136185dc9bdf"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-xml-jaxp@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-xml-jaxp/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-xml-jaxp"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-xml-jaxp@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-xml-io-util",
+      "version" : "4.0.0",
+      "description" : "Camel XML IO Utilities",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "ec1223cfb7b374b836e3ed793f00aaf5"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "4984851ae6c222673eeba61a566d5abd3f3178e1"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "e79790ab609b3a230d35792e7fc4248a0502dcfc79902f3a8642623695f6d888"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "0348ac40c41dcb382b90006f52076f8f53bc7ab8ff54cf27db14f93609f0f946cd4e19db4b7e7bb9e377f7988c65bd88cfb843116186f88451268d651d9b7754"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "e5b794438ab07201446510198fb230e7f8ec9e4276b47bfa51ccc0f9b7df9dff5cd9d50edc47e9b18c4b4da0aa1b0f31"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "016b95c53be75f9c3069f4566a59dccaef9b97e778dd63e1a83a4025667a785095a969e14d5fce379dce4565da966f0d"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "cf13327baa8f4b52db78c8d064a7d5f70c936ade7054ab3d2e85a0d87d2343be"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "3caeafa69847f7e68863a1f975ca42676cbebb37c2228cc4e234c7725a75801283ed5393d91768481b6a61a466455f553d2e8ca819c7a6be1bc0cdde6a3e6ba1"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-xml-io-util@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/core/camel-xml-io-util/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/core/camel-xml-io-util"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-xml-io-util@4.0.0?type=jar"
+    },
+    {
+      "group" : "org.jctools",
+      "name" : "jctools-core",
+      "version" : "3.3.0",
+      "description" : "Java Concurrency Tools Core Library",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "db7fabb42e505fd187f3bbf066157d2e"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "d51b5222059a646c9d77e971eafca4ef382b10a2"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "0734fd31bc91b49f1ad4ade5b82604340aa10ddde3024b76a0e869ca0b48cdb7"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "12c724cb729a5a706a9d52a50706bcb0acc1e8d9e31e07b10a7641991680a31d03d7965d8cd156b03540112a3cf7c1159a6b055ea9cd5994e2eb5ff76b260762"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "3ebbd58ede2a287df705b39a8ded044d6ec5d656ed920687c6d88afaf5f965419d0a17337cee83afcee4bddcc5c187ed"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "58abf3813237d79b0b85db4f1de2f06acf8f02f03b37ce6a340ec4ec24b36035ea5955eef6112e812bcb805dd8400e04"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "e88e1c3b3a2e88e9af638d6de43290e4527e82553e15b501f32e4a2553e3345e"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "ae03715dedcd8bba7488ba0215f703eedebdfd79185a7cb044e4f9548e35b81b197caf7e663737cba857c6328a4716adb690666045a11d436bdcc494dc41da42"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.jctools/jctools-core@3.3.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/JCTools"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://api.bintray.com/maven/jctools/jctools/jctools-core/;publish=1"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/JCTools/JCTools"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.jctools/jctools-core@3.3.0?type=jar"
+    },
+    {
+      "group" : "org.apache.kafka",
+      "name" : "connect-api",
+      "version" : "3.4.1",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "02c495bca702bc6a6f8ad027a5d9ecf3"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "94a998d9eac0dd1fa1509b42d0784335041e55c2"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "eaf7a0ff9da7a6aee57160f982f1482af1eccc2efc68fd84563dc812b2b3600a"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "52ea21f110a9a6b738bede84979d65366cdc4cd5d1bd3f6d651aa56a4e2eda0047da1121d780c2cea3aafdca41151bed758281d3e15786229324f1d9abe4c173"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "b4b98cc7107c2fc65b3813718d6030a2bdaf43402f838d102b9d0adab3d0117dd8929cdeb92c6a7d56f33e1c55a7526d"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "e021287230ea564eb6b86fcdce3480e457b62c0b9108c0b93adec3aefb95e4190c9e72bd5326519b0d5da7fafa13f445"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "c07e72602f51b9b89ff1f065add9216016364b44f931e63b6c7d461488406e34"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "b5b022db78a1e1d753d76529d5a47408fc18e71d04b62bdeaa8220bae1bd84e3f14e29befbbdd3fbee7067522e9b7719ad3996de985b34c83be4868e9745fccb"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.kafka/connect-api@3.4.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://kafka.apache.org"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.kafka/connect-api@3.4.1?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "javax.ws.rs",
+      "name" : "javax.ws.rs-api",
+      "version" : "2.1.1",
+      "description" : "Java API for RESTful Web Services",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "23b81452f9e2076ffefede649975b0d1"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "d3466bc9321fe84f268a1adb3b90373fc14b0eb5"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "2c309eb2c9455ffee9da8518c70a3b6d46be2a269b2e2a101c806a537efe79a4"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "308ffdd33a48f85d27988d702e917c1ac607b758155552ea45a251735ff9e5aed7f7fd4b59b6cb683f8b3adb8ac52d5de928635c3c843291e6d17998ba7d4108"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "437b4947c5a6ed2ba8f894ab4c362a6898ec501e695b3655d350f538768f66580fd71712753c185bf7182fe261c4f9af"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "552597d145cff9e9c74b24ac5ca718960834057ff7b3428aa07b0bcca2a3d9fe31d84a466003eaa6d46c4c1314c4649b"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "a69a5f79386855259d568700bedfed7d113a89defe0e6c081a969da5e7d368bd"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "7edf62bbf67a30a68cd2c85f8c16d64cb3e657fa372a1771e04f9a8b2d637a3c953d684100cf17219ab24110c7508acc1a095be4574b2d9f1d516e193bd352a0"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "EPL-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "GPL-2.0-with-classpath-exception"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/javax.ws.rs/javax.ws.rs-api@2.1.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/eclipse-ee4j/jaxrs-api"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repo.eclipse.org/content/repositories/jax-rs-api-releases/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/jaxrs-api/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "jaxrs-dev@eclipse.org"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/jaxrs-api"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/javax.ws.rs/javax.ws.rs-api@2.1.1?type=jar"
+    },
+    {
+      "group" : "org.apache.kafka",
+      "name" : "connect-transforms",
+      "version" : "3.4.1",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "806e77d8042c34989c2af222ee4e6975"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "bfc53a2ff28312b9fa0fa926aec55546fc05c1e7"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "99c86814ff34fcf129b162c3635e617dee2ca61b75ddb6038edf5a5eb909f624"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "ab7be5982f3b0a660ba9fc56eb4cc14599152ae988c02842c69384867cb1595da3c3132f9a6cddb4ea720b70188b9eab53639c916ec17ea674b707d76396bea7"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "e1a4ff53a8f3d5be9f0f1123622a809ab30f0af4043b0347f04c19baf49dd97fb867b6dfa89a69bf1a51d2e19fe0b45a"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "4dbb6caa4fe7e6f349cb9a92b5b6e2b5a6532f65d2cb184ea675ccbd4922f8b8cbb603df5c2c84972371c9af8fdefb5a"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "167b37c557e82ee3695056650d950147293bf41d497cd8dae69a03cd7939ccd8"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "8c4136a37c1eaeef3570e2366f451dd85cdf118922fcd420018b33421f9811dd9919f1dfdf73a2e13c70650e2284f2fa9f8204454180f86164e25817c29501f4"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.kafka/connect-transforms@3.4.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://kafka.apache.org"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.kafka/connect-transforms@3.4.1?type=jar"
+    },
+    {
+      "publisher" : "Red Hat",
+      "group" : "io.apicurio",
+      "name" : "apicurio-registry-utils-converter",
+      "version" : "1.3.2.Final",
+      "description" : "Open Source API & Schema Registry",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "9004b31f232d26facf8c9f821080fb3a"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "48c4c2b368b21f10524d81fa6f7e6c8fa63b23a1"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "8f559652922008d651d380102cfdc8e57c64cd0e47dec86b9de845d022b4a5e1"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "3e6dd76693ff77f9060124adb09271ba0290a6465b5f1aa5d2f3a1ff77b0ea5cc07bc4376a0730fedd8496f942d4e16d2da1b1dbaa70a48d474c3b3df90ef997"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "733512ebf9f68154ca8279f97e1e1088acacfd03a9eedaa4922570e87600f330959d2edd014b881bc0a7ae6605c3ca8a"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "a66960ba7069979082704eb17658e5faa6eb21e747f6d17353a19dfad3e91db7e888b4f29ed60169103c81c006434a4b"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "825033d1556d5eafc18b749167c14a07febbde2e324fb28c60d1d4ee75b43a20"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "74b42af27c8c86b9dac55167831a32ac6dbaa62c85da2957cf7bfe378e216b7d5bc74c88752dc1b02e5e1a66b0b8e5fa7ee865a0f8039a00e402310963e87ded"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/io.apicurio/apicurio-registry-utils-converter@1.3.2.Final?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apicur.io/apicurio-registry-utils-converter/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/apicurio/apicurio-registry/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "scm:git:git@github.com:apicurio/apicurio-registry.git/apicurio-registry-utils-converter"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/io.apicurio/apicurio-registry-utils-converter@1.3.2.Final?type=jar"
+    },
+    {
+      "publisher" : "Red Hat",
+      "group" : "io.apicurio",
+      "name" : "apicurio-registry-utils-serde",
+      "version" : "1.3.2.Final",
+      "description" : "Open Source API & Schema Registry",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "d8e35e19119dbba4cfeddaa2e2519b0c"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "2ae38ba9528e966119af1bcd9fbab5db33838af7"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "9931b1c54f284e11005bdafd6f53bb0b85d39917e69ff07bf655ae06cc100283"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "0d7b3dee0604bac820f88eb087056dad1d2efb9beccba787ca9e58afc5f826698799d1872ccb7f00178fb08e1207c857bc830a025b07d880fd69bf56594b7365"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "a7aafdc9511b1b6d551fd39c7bc0fc6186bbce183b104708b301115d193f15bc68ecac96182bff7d90afc45582fd40ea"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "e90766843dc76aa01f28249281dca2d03b995176fd6720060354e4ad29e960a65fa7f81caf2e1f0271d875428dc47d57"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "8688585e6e1067adca3d74fe2a80855aff022f3fa9f3311dbbde8f8d9573dfe9"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "923f89645a75558b4697a4bec04d86555e7724d5ac4c0a40b4a4ee6b9e2cbad499b4a7c081d8cd3bec2784708cf51090638ff18438e499e89ae0dc253969640a"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/io.apicurio/apicurio-registry-utils-serde@1.3.2.Final?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apicur.io/apicurio-registry-utils-serde/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/apicurio/apicurio-registry/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "scm:git:git@github.com:apicurio/apicurio-registry.git/apicurio-registry-utils-serde"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/io.apicurio/apicurio-registry-utils-serde@1.3.2.Final?type=jar"
+    },
+    {
+      "publisher" : "Red Hat",
+      "group" : "io.apicurio",
+      "name" : "apicurio-registry-rest-client",
+      "version" : "1.3.2.Final",
+      "description" : "Open Source API & Schema Registry",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "b451bf45ff1c5bb3e6a06e5ae7e8c5de"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "d45273de76d74a39fd3b605814d8b64840fc27a6"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "559f87b4bd8c9030102eb3cc0678b97f753cd0481e61fb206294f2d38149f79e"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "0d93fc07cc554934362dcd273d1f6b572a2fe484d1e539cb71be8b2ff2a53c0836fca87126bfd963f3c5a844af81a9f890e640c6d950ccd580b19b67c6cbe70a"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "0176f97bab07330d77a51bae4bd4132d71cc1ed95f416fa7dc0d80f0686c2296d758753ad2fd3b03d276e6ae448e9f5d"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "0f27d7f2eef3e44daa43fd0d4051cfebfa7b3df073d415bd0bebcfbdaf778b21f0144e584bf654f540812b385552d839"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "0bd9803767b2621229a373a49920112954966dc13ca0cb9a9f45a186f51ad44b"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "72769509570d0dd4d50a84b96f034c0f7932f942278fab462afde2465cace4bd773964dba867acd7f63ece025bad3bfaac87dda3ae4bf01d155336e51a13322d"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/io.apicurio/apicurio-registry-rest-client@1.3.2.Final?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apicur.io/apicurio-registry-rest-client/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/apicurio/apicurio-registry/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "scm:git:git@github.com:apicurio/apicurio-registry.git/apicurio-registry-rest-client"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/io.apicurio/apicurio-registry-rest-client@1.3.2.Final?type=jar"
+    },
+    {
+      "publisher" : "Red Hat",
+      "group" : "io.apicurio",
+      "name" : "apicurio-registry-common",
+      "version" : "1.3.2.Final",
+      "description" : "Open Source API & Schema Registry",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "0506d48e93a0538f0ba4e69e8f532a16"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "762a7934e9065dae27a1278e38df067ff838866d"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "35373ddf2312e9bab694a568b80dfa527477bcd57fff3ab3de8d7e778d468564"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "290e3017a71cda7ee5cec6a4fdb7ba347024968cac11c45064b7db1996b74c82a78b63b67dd546e16b8fc3b342bcb34ebdfea08761ba28058bae7d3dc28dc448"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "8e6716dfc172b79209f6d98656d6c00346e52701ee7895cfca601d5e9b9fdaf92b0c0cff1ff14663bb56f0e8b0fb12e7"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "37bd3045fdf20bfe7c85ecfe5cdfaa9dab381438e8b165bb90371fd9556d403a28281ca9f5eaa6551508d92ef92af914"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "d00c676e11eb795499f3d30e8634fb7232686cf377d9ac9ca0de05b32492bad1"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "c1e9e741b5c77ad61f1f2a35f5157a9acc92aa458d24f5c815c4d788a46e3cdb304418d06c8edafed9a72796271ce2f39f3218b43ae2da0caf54c60fdc1bcf3c"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/io.apicurio/apicurio-registry-common@1.3.2.Final?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apicur.io/apicurio-registry-common/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/apicurio/apicurio-registry/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "scm:git:git@github.com:apicurio/apicurio-registry.git/apicurio-registry-common"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/io.apicurio/apicurio-registry-common@1.3.2.Final?type=jar"
+    },
+    {
+      "publisher" : "JBoss by Red Hat",
+      "group" : "org.jboss.spec.javax.ws.rs",
+      "name" : "jboss-jaxrs-api_2.1_spec",
+      "version" : "2.0.1.Final",
+      "description" : "Jakarta API for RESTful Web Services",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "35b4d1b6b5f70f01c108c6b2349e4635"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "75cdeb26ccf87bc6f9d0f31b5ec4d80aa15b662c"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "3518db0a3980aacfdae916f0eb081d0fcefaa2076d2ba603edc779a601d2d1a4"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "32e2c300b8e03beef0245d1e52a779c4be1929e010ddd37ab6f05299f99887760b015b8e59efefebacb099947137a38c9cbceda94ff7e8b49e84fd4ac1df8e8a"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "fc45e2494021ea64942c5e48180df8ac1945cf98509fc9301c40924f0a8633f63bfb1968281f6967aa4d23d84a25aa84"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "ad9136a00c74fcc705a5950f70caa961b0df458150357036ec3a06aee25fa977368d20149976a9507efc41f89f27fc2a"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "a53676703f732a68b5d0f1ceae9b4f569ffb3b1e829d47c9ce73fffc8dedfafa"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "e4a112cfbfa9e150f77bb47a38dc1449d2905bfb1ada7a237ec43a6fe053c57561cae8c9fdbe4911975d5b1a61b743c68afd7babb66bfc8a4fd94c95ebefbe5c"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "EPL-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "GPL-2.0-with-classpath-exception"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://www.jboss.org/jboss-jaxrs-api_2.1_spec"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://issues.jboss.org/"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/jboss/jboss-jakarta-jaxrs-api_spec"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final?type=jar"
+    },
+    {
+      "group" : "com.squareup.retrofit2",
+      "name" : "retrofit",
+      "version" : "2.9.0",
+      "description" : "A type-safe HTTP client for Android and Java.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "890d951895e6d080185377c741526002"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "d8fdfbd5da952141a665a403348b74538efc05ff"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "e6ea1929c46852f5bec66ab3357da383476cef4e8d1deefdbf195b79cc4d6581"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "8abaaf318db60f5c85f7b6c0d0c6514cf3872f07961e731b6011dea99b1f6c75fdb9a54a841df6073f0dd81d433047dbb4ebba8551c98aecc8b63a38f2b01168"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "985cf8250284e75c9fe22210b9036924345bcfc7479b02082d029cb5a9f40a627a9ffbdacc8f38fbd6a7feaf4d5658f9"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "6a7afc288bdca8093bba3776beac98b00b268c5a67e83e58571c37011d4c5d2fc42df1334688c7b3b065d32c236f9f18"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "2cff60b8f48ea014c01ad14be40ed33bd76138c1589d928b48edee35fe367b6b"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "e6b395fda78a23ce0a9c6c74c9c36f634ae089e7ba4a116150774ab07ada78c52f1cfc4f5de1d3f10c5215a4e9e2333a1413303c9f4f5b2867d1d7cface37726"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.squareup.retrofit2/retrofit@2.9.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/square/retrofit"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/square/retrofit/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.squareup.retrofit2/retrofit@2.9.0?type=jar"
+    },
+    {
+      "group" : "com.squareup.retrofit2",
+      "name" : "converter-jackson",
+      "version" : "2.9.0",
+      "description" : "A Retrofit Converter which uses Jackson for serialization.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "cd5b07f9feb365f9d082cb1791e3fe86"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "19b4010914e747601e26f46c6a403044bbe0b2bf"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "7d94ccd114408ce1b1e30c52d0e412acf3285ea2d3debd734d17558a629c3b28"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "02602c4098227f0cd5e4d834647bf3b1cd276021902461662746c821497aca440187a10dc0be9dddebe85af17e447bf1f75ea454e51c72fca29efef208b9185f"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "9866f6cb1d29747ab7b7fedbf6ae05bff52f7cddeb61cb19e55ab1754a3399bf03d0101db113fcb5fba515c5b6622837"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "499a137bf604a9223aab44750168a39095d610d30908991d798bb4e9daf8d941c8521d26a00183551089b7e24f11835f"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "310e6e2dc022d23700271a73eb28ae70341a8cd4d973d54a33423f07f86ba0b4"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "def19278b60d35a9d904667e5efc9084dd3ced774b231f9481c2d22c5fdadf132363ebdc38561cd373fdabaaf7fffe3b27853d6c34819b7a6ea72df20e34e0a4"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.squareup.retrofit2/converter-jackson@2.9.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/square/retrofit"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/square/retrofit/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.squareup.retrofit2/converter-jackson@2.9.0?type=jar"
+    },
+    {
+      "group" : "com.google.protobuf",
+      "name" : "protobuf-java",
+      "version" : "3.23.4",
+      "description" : "Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "2ba07863c839f3584938a1ef7e594e33"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "5cc1be17aed4e1e396c6b5359518f369a42ebc37"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "2fc98a20224d88c8c3dd9a403a8c3930ce0e275aa847ad3734fcbb2db012498b"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "a921afbe1f1f734ba579c0ad347e8c4cd1644a94af7740f2f36e541a4255e265d16bca93dd4edecb13a9ba9fe2dadbc413dd305ada99d6963f60d1afe47ec94d"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "e94308ecc73db6b6b11519ea368d5246651b3aeda0053295f326b7a23b163354f41ab4d3b549b949a493132d27b8be48"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "963a3face4382de66b030aa95dea2f7ddab097d1788ab6ce0a092d97580b44ebb6fceb7b9dac77bd4404fe2ac3cbde59"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "5f79dd3e5d7de3bd432698a5b40809cf53fef54ebc56dbf11d64f9bad94bfc98"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "b13ef223df630f80dafaa246c6b9b31042f44ec1c23d93dc45399307dcc589eaeccafe5bb547391d92cee649b9c37edb189f06d7923bff5f3d6b70ce08453cc2"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause",
+            "url" : "https://opensource.org/licenses/BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.google.protobuf/protobuf-java@3.23.4?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://developers.google.com/protocol-buffers/protobuf-java/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/protocolbuffers/protobuf/protobuf-java"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.google.protobuf/protobuf-java@3.23.4?type=jar"
+    },
+    {
+      "group" : "com.worldturner.medeia",
+      "name" : "medeia-validator-jackson",
+      "version" : "1.1.1",
+      "description" : "Medeia streaming JSON-schema validator for the JVM platform, Jackson module.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "8f4e96da5524fb686d091825cf37ad0a"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "95c0526a361ce9e0aa2bc7938a3c71d726781103"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b3cc41b37e0b5953898467f282b6a42075a2b41dd500fc49b1212829184534b2"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "f587f822a3e6f2dc37ad555f831bd9af6af5d88ea2410c71c9e8bc8aceef5a196ba0094ba6e9040fa96847feaefbedd983016410e8dd2ac5321594c753721f07"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "c29b788928876fe774a7ffdf1184d53c195b4d9e28ddfd4abd853273591475c1b774f3c3b63d06db8db0955135982d67"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "f6187035f6af065a49c5e5518603a7f95b8ec49fd5118a810840facdcd98976367708a565f91099cdd3bcbb227a7b64f"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "cacaf0ee82aa21e634423bfc88fceec3aba3ff85739fceac54e7133a943b69c9"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "69eb5f929775861aa9b49f0bab6e582c1a374dee6aba63d2f91af6aad51736f51933f2bdfec4e9b927542be686334e9eb8e5cec239e068eddd9aff99e9312cf7"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.worldturner.medeia/medeia-validator-jackson@1.1.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/worldturner/medeia-validator"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/worldturner/medeia-validator.git"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.worldturner.medeia/medeia-validator-jackson@1.1.1?type=jar"
+    },
+    {
+      "group" : "com.worldturner.medeia",
+      "name" : "medeia-validator-core",
+      "version" : "1.1.1",
+      "description" : "Medeia streaming JSON-schema validator for the JVM platform, core module.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "c2fa622dd0d7a30c04434a1fc8e63d25"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "1b73af279c0478d308610922af11bfce4d2bd2d3"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "206a37ae4cb84c1aa4bedcf145e94e30cbab6f15b809a9602231f28793ebf793"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "37f515148c409a159c46ae77221cc8f04ad8c6de151fdfc042d51d35faec271078c95bb1c7f01b63475281292310ca8f80ee07f80e4ffb4e81a85749a4ba88f1"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "16bf88513c228e09dcad1a728baa089e7bf2e8a7f9900ae0752b2f1dcca1bb93cd5f82e125add0965973b949f36f06a6"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "2e7b6c44dc0ff9932d68239ae2b7db0f7d118e7d7c468b22ec7447ee3f0f5aec6bead4e85754d3d3264017a95da70701"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "1d01d079507883f01abbb29e6286b3fcf57bce2fc895e5e4c4e7f3f1999813d8"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "102887d9b2dab4782da97b88cae39a383c578fc15d45464996bfa89849f41cc2ebc53e988f7798d8002d9c7dbf7daa4afbf360a9099e479921bd38a0ca77e750"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.worldturner.medeia/medeia-validator-core@1.1.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/worldturner/medeia-validator"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/worldturner/medeia-validator.git"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.worldturner.medeia/medeia-validator-core@1.1.1?type=jar"
+    },
+    {
+      "group" : "org.jetbrains.kotlin",
+      "name" : "kotlin-reflect",
+      "version" : "1.3.20",
+      "description" : "Kotlin Full Reflection Library",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "2bdb81a9aeafb7d249cd01113f97c9ac"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "cd49eec32cf964333faf59e04b4085eac7008477"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "ee1a926ed658e7de0e6df0242cd574b3b4e08e64fe7a68278226c6f2d3373238"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "3178d2fc534bcf40da7aafc1230d44ccb879c1dadbdd16bf50eec08ca01370d94e6d5c953093674810d8baec6b785970cde14cb7ad5fcf26cb1910257dedc49b"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "573dd227c22c9dc6c909c54639980373917a4ced37707fd75c42e03d32e9507bc41ed37a2c0bdce0ed52f3bc367574df"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "227fd5f4e3bed8596f4fc0b513a02306005f694e7e329a1066a64d13a31a5ee7af6b2aa55ab09730a097b8c3afc8b847"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "44f887b0319aa36decc31e713594674ab51ce234001f9ab675a76a4e0f6f3eed"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "16061371d47d051d829776548d85a0a5bedb82c2502f049fc41c384f154d2c11b99be3e2bea8c863fba7ea5e8e24453d4e57819117911427acd005663bec5898"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.jetbrains.kotlin/kotlin-reflect@1.3.20?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://kotlinlang.org/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/JetBrains/kotlin"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.jetbrains.kotlin/kotlin-reflect@1.3.20?type=jar"
+    },
+    {
+      "group" : "org.jetbrains.kotlin",
+      "name" : "kotlin-stdlib",
+      "version" : "1.3.20",
+      "description" : "Kotlin Standard Library for JVM",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "e5f1264357431025269a2333e9f535b6"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "eb2a232734e09fcd1b958a5c7520a93c6de38b32"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "601f910da968fb3da8ead7b64ed6bf5c9710d83cea37e4a631847e7d688e3361"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "5abe417c134298a0a00719ee4bbb1657e1765b0c8aa483e2daf9e4e1e54ed1fbe674ed36f928ae7972125c8af638e73f90738525cef46f7343e4fd17b46d2c1a"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "9e64600d1aacdf047195b6ab740c43ad5b578bb99b5459daa87be41cfde0c11eb3db2460433b48ff9a9f45e9f6c65a17"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "2729e5c306bc18c0163d09c19d09c33a87e57ad567f281ca8b0d9c233ef13f9f75cee06829be6d5d3e11001679e48784"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "c967878f85b865cde5c81052db072b7342d24ac5d07f29932e4d7675bcf4bf84"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "31d06fa2236d54be71d57f3fe384c19eb0a5c678b91dc633458fa7843a4c4f442eed0565d6a6e78ea04b78f85be43b4ef41d872a16a6fbf8af5d4db3ef43a035"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib@1.3.20?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://kotlinlang.org/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/JetBrains/kotlin"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib@1.3.20?type=jar"
+    },
+    {
+      "group" : "org.jetbrains.kotlin",
+      "name" : "kotlin-stdlib-common",
+      "version" : "1.3.20",
+      "description" : "Kotlin Common Standard Library",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "243c0d2683747398bfe4e3479a2b44d3"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "7d7934e26ce34da1a0a8d00e38038d7cf3375e89"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "06bdd8aeda347ef6ef3e4e9d88a01254ccdb70784b697495f6a421fd663ab649"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "6b5ca4a5dc7d4f84866ecf0d95b7c3585a1666fdb6db7e873a9039ddb5796b6d29a02c67e782f8d0e9c57a490503e780c60387212b5257f1efd811387a2f505d"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "f25efc479b06e734f531261c80531c666caec51d78e4ca4242922a46077a3a44bf9da1d0f10657317f82acebe0e462ed"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "32f884745040bda0a3b6e6a6fd936e752d3d7bdb767070eca52c2783467f039e08d260c3edfa971a8d65722e74d2f40f"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "958a19094d4464de9fa176f99bd208079af562f4a4887e8d2a2cec2d7a39dd23"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "c771063bf6d6eafdd1e0e249304b97f9a75922f2c37cf5758b39899333c0a9672ac3f9c02fee22000ef81b9840e00f1ee33d271f5c212b4fe9d56603dbbf42bc"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-common@1.3.20?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://kotlinlang.org/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/JetBrains/kotlin"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-common@1.3.20?type=jar"
+    },
+    {
+      "group" : "org.jetbrains",
+      "name" : "annotations",
+      "version" : "13.0",
+      "description" : "A set of annotations used for code inspection support and code documentation.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "f4fb462172517b46b6cd90003508515a"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "919f0dfe192fb4e063e7dacadee7f8bb9a2672a9"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "ace2a10dc8e2d5fd34925ecac03e4988b2c0f851650c94b8cef49ba1bd111478"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "5622d0ffe410e7272e2bb9fae1006caedeb86d0c62d2d9f3929a3b3cdcdef1963218fcf0cede82e95ef9f4da3ed4a173fa055ee6e4038886376181e0423e02ff"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "6bcde3a6e471d416522e6288474bc4f9115e2e8abf8ce5d300829bee4aa98dff73be7d8c6f0607f3d6d423c7f5abbf90"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "f4d5a5d5a76b24c4751c8c52f2879b097d2430c3571c59b4630e8c871c9bdb08e24e803a14c24fc8d3378417f29b7244"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "b4a80ea81c4bc7e364e07981465f547e8ed83031806eaf3b97dfb38f894f5b6f"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "15b23bce818b4399b334dd632eb85de5a1b70c47fb9260561e70b1f726211c83bddbc957f3b4c32a1d8c687f9bc6c38d0a638c731cb5daf5b619aa725d6050c2"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.jetbrains/annotations@13.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://www.jetbrains.org"
+        },
+        {
+          "type" : "distribution",
+          "url" : "http://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/JetBrains/intellij-community"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.jetbrains/annotations@13.0?type=jar"
+    },
+    {
+      "group" : "org.apache.kafka",
+      "name" : "connect-json",
+      "version" : "2.6.0",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "63cad3f697df18983056e9383bd45205"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "1f2a8bd0023ed8d56214b0f466ed3faefa4bac48"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "96c07c75861de01cb41404b5a8f087eef2f4be033a4553e90684349a833dccf6"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "b48356d1e5c677d52b379a050229c70a428ca1f26b771a532569d8edf8c9d38742e46617ed9ab51fdb551dd105495588cd946b250de34f0ba17280a33d594b01"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "66a08172885803efa8f3dc3b9102e7b8e3f74200ef5f1e06180f34369f31f02abd379d7e0e2f20a8e697e18a95c241f6"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "31e5b87dcf47e91401c2a0dfefa9e1e3d35ef8a1ead3f74083959d6d037d90210ecf7405c45b602ce31c6f0c8382132a"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "0bb03409054af7b271e6b0159533c22e3586014c322a4969223e870881c8002f"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "0b49dfa2a7cf6a84fe7647546958acf2c1e6e64a129c35ad9cb677ba0a1fa385809f34331cb7da117a35e590a6bea6503ecb00f92b560f1eddf0fb182f44ff2a"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.kafka/connect-json@2.6.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://kafka.apache.org"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.kafka/connect-json@2.6.0?type=jar"
+    },
+    {
+      "publisher" : "FasterXML",
+      "group" : "com.fasterxml.jackson.datatype",
+      "name" : "jackson-datatype-jdk8",
+      "version" : "2.15.2",
+      "description" : "Add-on module for Jackson (http://jackson.codehaus.org) to support JDK 8 data types.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "dafcfdd5924e4b0577250280c7ff0d6e"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "66a50e089cfd2f93896b9b6f7a734cea7bcf2f31"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "5be6e20504b1eab7a40f98c4f98bd92e9177d6e6e20f183928e7d207fc66cb78"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "73d6b07a821c14fb0ad13e4a3ca2856d316961c2f6d8b65c29a0c7ab587f76d56dab49b0f114b506ed53d36e084c9b1dcd8523ff743009dfcf34b894accd689f"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "c458c5fcba559d50f3356f11bd9136e814566568cb50d93fd23588e0c7427a8f12fa8f040bbd4bc0335dbbbef760ffff"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "6743fc6f3fdbbe6551f5bc68e547a8ffc1cf7ad3860a551bce226742d5e5b08416163d3410fd163fab137b433d9dbb01"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "c3130237546b90a5761c60355b34609e051a0248d026b54139ae1b37d8124d38"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "a748da8094ab51b17a19f48e2605bd5f0eeb35e4942c9586e748497d04cce6e9ae1c76b6847edb089d12b266f2ef31d248f6290988ee4f4059f91dad76936e7b"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.15.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.15.2?type=jar"
+    },
+    {
+      "publisher" : "FasterXML",
+      "group" : "com.fasterxml.jackson.dataformat",
+      "name" : "jackson-dataformat-avro",
+      "version" : "2.15.2",
+      "description" : "Support for reading and writing AVRO-encoded data via Jackson abstractions.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "9c22cf48a60dd006f5a9d7816e3d23b4"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "7ad4e9b695aa72cc6b0645f5705212dacb24c266"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "680f8531e7e5e516a3141ce84db4e97f60521712195adc002fe7d3a60d65cd67"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "8bcfc9e7b522282b1e5d0d9df91c1c1e1d3a513226bb5dab948e0742eae3aea178e92029957f42133d8fbd65b24d219ea02c97c8f947991301b2b7019bddb2ea"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "2d8199414f3e20d59aebd63d11d8dc62201ed8dcee53de1b009eb66c83276931c81d758f94034ba225a6263fa80c25cd"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "612327345b7406ac305b8e30409e428041a8923a078aaf7b6bfcdc1643baca0763ed0c92693b838d2afae78faed1983a"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "571a27281f5b89b79ae3a81055dca114ed0ce5fe7c400b5f83df695566af2e02"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "563f3d406ea4dc51f3ce27800ef621258402ac31def983569ac23b61c7a6667936778901838e02524a10c77d61a072e3793cb8f3c732a72046b148f6bdec4a05"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-avro@2.15.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/FasterXML/jackson-dataformats-binary"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/FasterXML/jackson-dataformats-binary/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/FasterXML/jackson-dataformats-binary/jackson-dataformat-avro"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-avro@2.15.2?type=jar"
+    },
+    {
+      "publisher" : "FasterXML",
+      "group" : "com.fasterxml.jackson.core",
+      "name" : "jackson-annotations",
+      "version" : "2.15.2",
+      "description" : "Core annotations used for value types, used by Jackson data binding package.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "71dabcaac955a8bd17b5bba6580aac5b"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "4724a65ac8e8d156a24898d50fd5dbd3642870b8"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "04e21f94dcfee4b078fa5a5f53047b785aaba69d19de392f616e7a7fe5d3882f"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "c9ffb4cf3e409921bca1fa6126ca8746c611042ac3fcf0e4f991d23d12b20ef0946ef1421d991ae8ed86012059df4e08fb776d96db6d13147c2ec85e22254537"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "78885119a700d5dd717fc83e58bf063e1fd07bc823846b6797af6a04a99e92e8fbcf28c3a1316079e6695c138c110deb"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "f5b8fcedd6d34427bbe32b1c6082b49d9ded5a00b69549cd6722ffad7d87f3e90b48ddc74a8bd0dec1987ebac73df3a7"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "b4e4df4be6fe975483027aef5d4df099d8bf6dd5974118d118a47775d5f75a88"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "d10fdee33fe005f9941851117e7021fae066ca3ddf2ccbbd048dae103f3cb540e11116ba53fe48b34bbab6fcfe09a6cbc6c50d1bc74893509e8b93a6c6f2c517"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.15.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/FasterXML/jackson"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/FasterXML/jackson-annotations/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/FasterXML/jackson-annotations"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.15.2?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.avro",
+      "name" : "avro",
+      "version" : "1.8.2",
+      "description" : "Avro core components",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "10395e5a571e1a1f6113411f276d2fea"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "91e3146dfff4bd510181032c8276a3a0130c0697"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "f754a0830ce67a5a9fa67a54ec15d103ef15e1c850d7b26faf7b647eeddc82d3"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "74d39c7f55edbe5f8124e2905567424fdd0149d4f76b7345416cd1e4838bdc8630e9c0e93e7a38537ae39a72883dd8eee9dbea11f288bcfe15895046cc3103af"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "bed8ac1832b6026a44e11adcf19f3a8da12861bf5b9584db19f0621c24fe8642160ad10904e6a47fd5b6ddd68efdf105"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "1618aa01a5fe77f0b8bb1665d8f9baae5f4e684e9e7422a7bca1e3566bbb167c9b4812f3a900874774b1e522ac223187"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "fed658c8bd6e583160563ccd2d6703d22b34bf1ad649ab13487dacae1bbd2848"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "2a8bed5eb961344700d453877d6d610e5880c7a67c7e1d7df2b8abfc21e64043cb93effe1c5ce20da9422f01294c9ea4e78bb0282555121739a8f811f12dd1e4"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.avro/avro@1.8.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://avro.apache.org"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "http://issues.apache.org/jira/browse/AVRO"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "http://mail-archives.apache.org/mod_mbox/avro-dev/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://svn.apache.org/viewvc/avro/trunk/avro-parent/avro"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.avro/avro@1.8.2?type=jar"
+    },
+    {
+      "publisher" : "FasterXML",
+      "group" : "org.codehaus.jackson",
+      "name" : "jackson-core-asl",
+      "version" : "1.9.13",
+      "description" : "Jackson is a high-performance JSON processor (parser, generator)",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "319c49a4304e3fa9fe3cd8dcfc009d37"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "3c304d70f42f832e0a86d45bd437f692129299a4"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "440a9cb5ca95b215f953d3a20a6b1a10da1f09b529a9ddea5f8a4905ddab4f5a"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "11725da54c7c18af0b50967a9317866ce9d11eb94d3b52ff7a54c6550070e143b5a582de9a8ebb6d61a8104f4dcd7ddb9c2e6f5c3605b6900d48f5241fe38d89"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "26bff8b72770f734bac78e1ef2f575b26b7676895a4f022f402c99e38b567905ace700f553771606603f508b749bfb4f"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "27be7948772c3680134e42ca889dc3f42954394fff4b6f7157d73a9f32886795c6d56b80283d2d762409ad56b753a811"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "a0ea1eb75ad00b7c61b96cd71b40b6a0f558c7e1089d42b6d3cd635b1f62b0b1"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "67bb970e761b9dc171ba1e88e5ca2079de26b046f773f89400ccef901d1c0ce7f9f6d0d4a0af5c18ac54c1fbcdce035809584b6514167bd8cb6730294947b13f"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.codehaus.jackson/jackson-core-asl@1.9.13?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://jackson.codehaus.org"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "http://jira.codehaus.org/browse/JACKSON"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://xircles.codehaus.org/projects/jackson/repos/primary/repo"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.codehaus.jackson/jackson-core-asl@1.9.13?type=jar"
+    },
+    {
+      "publisher" : "FasterXML",
+      "group" : "org.codehaus.jackson",
+      "name" : "jackson-mapper-asl",
+      "version" : "1.9.13",
+      "description" : "Data Mapper package is a high-performance data binding package built on Jackson JSON processor",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "1750f9c339352fc4b728d61b57171613"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "1ee2f2bed0e5dd29d1cb155a166e6f8d50bbddb7"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "74e7a07a76f2edbade29312a5a2ebccfa019128bc021ece3856d76197e9be0c2"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "81cd7962fd9ee6d2354f5e44d23de1fa96d0da665b79a0f4ce6f8012bb4651683ae69b82daae3cf4feb101658a344bf4d665fefc3a57eca3a720761732963873"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "d0f846e695d5ba34708b7d066a77b66c3f4c726300bd56f222b61b2c72cf35c95c98bfaf5cb99288a96aa54cc6f1d55c"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "a089909a560cebbfcd1cc715b2f24360a25b0bc3de9c6da0ba22580ac727a55ff42aa45b1e411aa547121bda38e926ba"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "7fa149f84f2f0b937a68e0fff33a8bb68a5113f88b0a030e94a5b8f0e56446c2"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "77ba7d6d92fbccf038c917bdd3db80a7ce4c7a65ab4765e580033ffd968acf050e2aa6e989e4d1a465df8e8bb1383b8da87e6a028eae1cb5504d54237dbc3eea"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.codehaus.jackson/jackson-mapper-asl@1.9.13?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://jackson.codehaus.org"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "http://jira.codehaus.org/browse/JACKSON"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://xircles.codehaus.org/projects/jackson/repos/primary/repo"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.codehaus.jackson/jackson-mapper-asl@1.9.13?type=jar"
+    },
+    {
+      "group" : "com.thoughtworks.paranamer",
+      "name" : "paranamer",
+      "version" : "2.7",
+      "description" : "Paranamer allows runtime access to constructor and method parameter names for Java classes",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "5707a297363249fffe38e8189cd6f9cb"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "3ed64c69e882a324a75e890024c32a28aff0ade8"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "63e3f53f8f70784b65c25b2ee475813979d6d0e7f7b2510b364c4e1f4a803ccc"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "09291199b6e688faa5c359725461a000a930e9dcbca63ffe998ca6b56108957f61237c70830f163b7f20891e1639cd3771f7b386275ef2a501c2a3a3630ec3a9"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "393b4aefd71cf0050bf23f0490f7a738b4e59a654551b96c6c7d473d5731d514534e39a84bd126402c412105dc7fcb87"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "8ab8fb8735419efa2d2df3afb827ec47265df96b8129505e6e2870c6eb2b0b68ce47cd92b620cbb3028895bc72e2e443"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "098b8b15d30d5b1368de6fa7c2117949a7c318fcc63769b2b271c5f453a16491"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "3bfdf62ec7184492c9139a8e40d3ab96604593d9fde0d0e59c0908ee608f5edfcfaa3381567f0524cd583e498704aa01d50f33618cd92733f4e42dc09d64c649"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-4-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.thoughtworks.paranamer/paranamer@2.7?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://paranamer.codehaus.org/paranamer"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://nexus.codehaus.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://git.codehaus.org/gitweb.cgi?p=paranamer-git.git/paranamer"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.thoughtworks.paranamer/paranamer@2.7?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.commons",
+      "name" : "commons-compress",
+      "version" : "1.8.1",
+      "description" : "Apache Commons Compress software defines an API for working with compression and archive formats. These include: bzip2, gzip, pack200, lzma, xz, Snappy, traditional Unix Compress and ar, cpio, jar, tar, zip, dump, 7z, arj.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "d862e30ff6b5d78264677dcd6507abb8"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "a698750c16740fd5b3871425f4cb3bbaa87f529d"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "5fca136503f86ecc6cb61fbd17b137d59e56b45c7a5494e6b8fd3cabd4697fbd"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "5f254bffa74bd5a58581ae304a54d127db8a5f68e4d265594ec547013287a87716ce7a60dfa5e19f2ae8a6c75670d25ddf89eab764caf882def1a17e7d3cfddf"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "65dea448fe9fdfd11b6dffe548704f12bc8794ac49c414166fa9a12789a47401dfb0c10c498d16c4328adfdc4f2d856a"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "217e1f2e1473ea108bb92f0d5a15d8fb97677f2fd959b6c6abb47d1f3547b5deef93319a63a170786ad0c3b671bc4797"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "893ee42587b7607bd739e13b39d85e22cece784d832f248c3f46cbba400f12cf"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "039cdc92f9514466fb5cf50a925907a23504e820a37aad8c905a254b620ab03ee68b8167ab0422f02a693acdd4df56d4e7b63f544e260635b8922e3fbaffd5d5"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.commons/commons-compress@1.8.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://commons.apache.org/proper/commons-compress/"
+        },
+        {
+          "type" : "build-system",
+          "url" : "http://vmbuild.apache.org/continuum/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "http://issues.apache.org/jira/browse/COMPRESS"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "http://mail-archives.apache.org/mod_mbox/commons-user/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.8.1"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.commons/commons-compress@1.8.1?type=jar"
+    },
+    {
+      "group" : "org.tukaani",
+      "name" : "xz",
+      "version" : "1.5",
+      "description" : "XZ data compression",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "51050e595b308c4aec8ac314f66e18bc"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "9c64274b7dbb65288237216e3fae7877fd3f2bee"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "86f30fa8775fa3a62cdb39d1ed78a6019164c1058864048d42cbee244e26e840"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "c5c130bf22f24f61b57fc0c6243e7f961ca2a8928416e8bb288aec6650c1c1c06ace4383913cd1277fc6785beb9a74458807ea7e3d6b2e09189cfaf2fb9ab7e1"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "c67ff55c122a99db681047f37595472c7816b65b100da64c0469747779f08925175055b4105150bc17e3b774f31fec41"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "e44e414a4ec4452105c5cb0441ce9d23bd1042e34e5dc6dc1f5038d448b922a87273db09b37c4ad0df7cbf13d2479936"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "6aecc8e9226a14b8a5613c8e430e47b556b98fa4830d54b617d476021845d73a"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "7d10eb8b2615b8d00c5b59686042908859eb6aeab77975cc1b3a301b30216a55edec9044036e8b0c2f4ef9ea79c8717cd8686fadfa5fc89d898998c1b2747d7e"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "name" : "Public Domain"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.tukaani/xz@1.5?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://tukaani.org/xz/java.html"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://git.tukaani.org/?p=xz-java.git"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.tukaani/xz@1.5?type=jar"
+    },
+    {
+      "publisher" : "FasterXML",
+      "group" : "com.fasterxml.jackson.core",
+      "name" : "jackson-core",
+      "version" : "2.15.2",
+      "description" : "Core Jackson processing abstractions (aka Streaming API), implementation for JSON",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "e51fdee85b48e6637ad9e85ee76b58df"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "a6fe1836469a69b3ff66037c324d75fc66ef137c"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "303c99e82b1faa91a0bae5d8fbeb56f7e2adf9b526a900dd723bf140d62bd4b4"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "a8a3ddf5c8a732fc3810f9c113d88fd59bf613d15dbf9d3e24dd196b2b8c2195f4088375e3d03906f2629e62983fef3267b5478abd5ab1df733ec58cd00efae6"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "22f4b71de5860b9c54dd85091d5b1312f7f5097a376f68f5a35b32a342858bf2e24ed394d76be0648545a6137d78b82e"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "bf7f6d6d6898978d2ca11e924f0268a90adbb6f6f88b1402e7c96b6fba76ff4e7d83ba163d10b1c551443c3b3cdef9d2"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "fa5ecb4b5ab9884403d5001dd368be876e10daf90e91fccfdf6fb21f14563c15"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "1e8648a4c8aac64f0f71787ec6dd4693a30fe0e3c1fb78ce12b2a1865d17d7f9788c085ed1ac1216e45c05f582a0764d8fee44cf18cc90403846d255fe778c7b"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.15.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/FasterXML/jackson-core"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/FasterXML/jackson-core/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/FasterXML/jackson-core"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.15.2?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-syslog",
+      "version" : "4.0.0",
+      "description" : "Camel Syslog support",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "636cfb1a74f86241045ee05aad4e95e2"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "0eb50e92d591312773d7e758fecebbba10fc887c"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "2ab39b598f779447427ec3eaef130dabc8a69124e6c7a98fdfe58f4053ce2bad"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "53fee37a33eea9622893a7113d37b902f2fe365b7a10f5d724cd6c94045bd82d185bb61d5dac97cec7364188820dc5456dbc5015761c83e70f38947c5e004d8d"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "7057252ed8dc241b4d81b686473f3b3815996b40eb97389766144f289883a05ab3cf33e6193560e6b0692e6fea87b68f"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "b79097602eef4d681135733abf2c3dc6b91c2f3d1d4da82e162c41c264c2181aed2b16dc13694f18dd1cfaec705acd30"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "88ab9543bcb9051eccc613e5e6e6b7dce23b91a98de52085ebac1cdde1c04c42"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "b066498cba3110e4d67ed9d8e5746228d1fb2c9d85f6b931a118c4819383d661c76e507fbcc7e3948bff7a00c00b670821258f41a55cc063d4a4793c472b180d"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-syslog@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/components/camel-syslog/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/components/camel-syslog"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-syslog@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-netty",
+      "version" : "4.0.0",
+      "description" : "Camel Netty NIO based socket communication component",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "0e7f6c9d8f1417f464b0104587b32995"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "b03d6e136cbb56efe2a53abca64a208e9f482eea"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "4d70f95aa3adcac00570d401078c470dc672bcb0d23dfb19eb2ee87f07251c90"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "e97368112b860b31034cb76f0eb3275eb53e0c7c7f92f7fc8bd17a5f98e6f884434810250531d43d500b728b4a44cbd537f27245a363f462a18bc83a57518cb3"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "6d360ae52a65717b4894258af326fd25a33c6bae1e43fe13fce5673b69d01c5f5642f71031835b0e4434f0c2d63acac1"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "5c7caa56d29383be15a9fc3ab3272ed3173dd264208695591261bce281f30471559d6b823f26839aa3a0b2606e31605b"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "e5b196787a1aebd6b2a2c732accb767585c389ea1a33cd861aabb7deb47f716c"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "adada3b191a925a9e4abee1e8a072719e5d693f3beb44b7e1a4124fd3f93c2dcfb0e71eba0cf6d0b3baf55194c58cfb37b1cf513db01807bd2bb72cc8d57859e"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-netty@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/components/camel-netty/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/components/camel-netty"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-netty@4.0.0?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.commons",
+      "name" : "commons-pool2",
+      "version" : "2.11.1",
+      "description" : "The Apache Commons Object Pooling Library.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "2210a041929e7c94485d5402458340b9"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "8970fd110c965f285ed4c6e40be7630c62db6f68"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "ea0505ee7515e58b1ac0e686e4d1a5d9f7d808e251a61bc371aa0595b9963f83"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "7177d8a9e45ae47881ec323150dc7bd3372ce32eff9866029b47a77cb734535d5e987f22e6cb7009104832c3772079fb6322b2919650765b76a4b4aa8eae648e"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "c77e99c898da417d33b035745e6f827d47f3c9a5f159764d1e31f0f0ee0b0b3569929495013db6c4d84922c78a3325cf"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "ba6e6d5a0e8d9e4778e619d8303ebba6c56bcd70169372e420067f3961cf98bd2631f177ac084d5dc1ad0790767816fe"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "985483edbf54bb59552633f3584ca0e484e2a0c471fafd7b2643809da874aea1"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "2757b5a8bd74bae36ad48a6102405457774d0aed03afdbe46cc804ed02f58dd484d637a0341195bb12bbcd8f3083ee3a644105734c0128fccfbe045cdf6b4491"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.commons/commons-pool2@2.11.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://commons.apache.org/proper/commons-pool/"
+        },
+        {
+          "type" : "build-system",
+          "url" : "https://builds.apache.org/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://issues.apache.org/jira/browse/POOL"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/commons-user/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://gitbox.apache.org/repos/asf?p=commons-pool.git"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.commons/commons-pool2@2.11.1?type=jar"
+    },
+    {
+      "publisher" : "The Apache Software Foundation",
+      "group" : "org.apache.camel",
+      "name" : "camel-cassandraql",
+      "version" : "4.0.0",
+      "description" : "Cassandra CQL3 support",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "7aec94834d801d758851215105e8298d"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "ee909c732e4e847cadc2080a4d332f42a629e234"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "960c2978f75b5444eae8472868b95397c58357c220e931f670012b8c48f581c6"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "116acce0dd7c9d49787c9d28c44f49d074a05220c9f35669d09d69638e4e033059e884f50eea1a9ab1c21147d509cb8b9e5253cd34e3201a83e0dde60794f51b"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "8801e3b9bbf896dbf7c2f835d136266f136edfcd25edf7f613a6c386b90ca57a3e932c11a499156232ef039313b30ab9"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "a9b12af649462908dabe85abfa69ecaf5935e683f618bcade7edbcdcbf3bb844babcf0f3f9829de3c12f8eeadd45cc46"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "b6a53eaa47d213393564f2010ed7566dad84cf285920ef3bedebde40938b5695"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "53bb12ba136e79c7c8d8a9e1f1068be0252dbf18d6ebb8907d124097a3dd763629c4c99b23cbbb0e8ed4a70487acf19129e790b7b9f4684f60e6b013c12206e4"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.apache.camel/camel-cassandraql@4.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://www.apache.org/camel/camel-parent/components/camel-cassandraql/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail-archives.apache.org/mod_mbox/www-announce/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/apache/maven-apache-parent/tree/apache-30/camel/camel-parent/components/camel-cassandraql"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.apache.camel/camel-cassandraql@4.0.0?type=jar"
+    },
+    {
+      "group" : "com.datastax.oss",
+      "name" : "java-driver-core",
+      "version" : "4.17.0",
+      "description" : "A driver for Apache Cassandra(R) 2.1+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's native protocol versions 3 and above.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "22ea44c19ec6538456500a991e61ecfb"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "3d619c4ecb214ac091006ff06ab32198a260f977"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "445e1c91e3f7512c1c0686700ec1e3d77d89131a2711ce66062909a7d88e8cd3"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "d8d551b5a334e2d6c1f3745c536d4322815c0d0772dce395bddac25cf939fd91210b18a2dd0c1cb82e3cb945eaf30cde5d0cff0b00a235dd00b085bacd33085f"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "3447b00a4899b7df06ef1c8aa3a2935e5e2e67fbc9938189a2b7bd7ca498c02cd965edbeea217d0963b482d57996657c"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "5cb0f327eb05e19f67c176e64178cd047831ae3fd0c2968a4ef38e015aa0d14839bd972397393134b574c3f219e67adb"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "937fa31e0f5967096678225cad2bb0d099257dd4dd5dacf2787382f50a8b7e37"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "0c9db83db7e2e7951e8dc355616b5a82c2f955129be82b8587faf71afde1cd7f3ff697e529e63564c7fbaa272e5c9c168feb86c9e084c4764ccef640cd8bdac1"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.datastax.oss/java-driver-core@4.17.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/datastax/java-driver/java-driver-core"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/datastax/java-driver/java-driver-core"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.datastax.oss/java-driver-core@4.17.0?type=jar"
+    },
+    {
+      "group" : "com.datastax.oss",
+      "name" : "native-protocol",
+      "version" : "1.5.1",
+      "description" : "A set of Java types representing the frames and messages of the Apache Cassandra® native protocol, with the associated serialization and deserialization logic (this is a third-party implementation, not related to the Apache Cassandra project)",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "3c4bf24fd592b01cff5234428080230d"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "97e812373a5fe7667384e7ad67819d2c71878bf8"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "955120805ddadd0771b36124679e337a20959c5639bc5de82bb8bce96b10441e"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "2aadd18ee6a34fa371fcc96b24303c12d10d1773e2c90bdff92a27fae9754388389ff4d07d41cee80e4b835813c78b179a32e26cdf0844c471b52fb85dbceaeb"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "61b02c81ecf499c29cb69735a2c86556583784ec21438da21d853823a6067edbab2e7160ab5d2245187106d1f805c819"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "bf220bae95be2b15639ffa2bb8a8fcb74198f0b794ae98e96547a4df1b6f126e686ed441f3ef445ee03812df438c3af2"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "72264e465cf60e86a889dbb5347950d57e9568d474e7d556d0bcd0a0f0d19e86"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "58a4753d86c2aeec3acd2858eb5917c1e74576df32a661d9e5744f08e4abd2b477ae87af543b0793c765832cc7882861110026fd592512bb8da13662da680eb4"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.datastax.oss/native-protocol@1.5.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/datastax/native-protocol"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/datastax/native-protocol"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.datastax.oss/native-protocol@1.5.1?type=jar"
+    },
+    {
+      "group" : "com.datastax.oss",
+      "name" : "java-driver-shaded-guava",
+      "version" : "25.1-jre-graal-sub-1",
+      "description" : "Shaded Guava artifact for use in the DataStax Java driver for Apache Cassandra®",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "b7b9ffdbca6117c0aaa13787da02f96d"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "522771d14d6b7dba67056a39db33f205ffbed6a4"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "8d1e57ab48ff4cc09b1a1f033218ad50f96cf92922f732cf333ec386c9e5c9ae"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "5aab1ca7ed5ad75440b7b1627aad5bfec217e3c8efed45c91243b09315b7a9b0834450bb48484dceda878b92d1f3e1963d95c084594be3e1451121648f37ebd4"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "15af2247acf9a51b8023fec497b4a9324a8c8b315ef83edebdc8937e7f1c8bcc6b49d92ab55470903dc02e2c0231eab4"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "3a93c41e05bbc5c2be2c78d0ae47fcb72fdf87a7841d1d119e6ff6aad7bc2094a8efa2817c1c83e36fc269d26e7cb2fb"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "96c50fcae9f2b60a5da371e9d793f33031043da6eeed3570992faf0a280e7517"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "e917529db128d99b30e5bb4e0d758ef77308f4dbb9ffecdaefd5b9fb16cee0fe12d13ab3bfc1f71b9926939e2978018d17411c85080ec77a5ceff9978261fad5"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.datastax.oss/java-driver-shaded-guava@25.1-jre-graal-sub-1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/datastax/java-driver-shaded-guava"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/datastax/java-driver-shaded-guava"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.datastax.oss/java-driver-shaded-guava@25.1-jre-graal-sub-1?type=jar"
+    },
+    {
+      "publisher" : "com.typesafe",
+      "group" : "com.typesafe",
+      "name" : "config",
+      "version" : "1.4.1",
+      "description" : "configuration library for JVM languages using HOCON files",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "aca1b7e7925a8643fe226bfce5a45217"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "19058a07624a87f90d129af7cd9c68bee94535a9"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "4c0aa7e223c75c8840c41fc183d4cd3118140a1ee503e3e08ce66ed2794c948f"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "5e30e5d30f76693c7338f0f96e2c880aa15203f5d2796254fe7d6e89197c2fd6f70d2aee9f9e1b345c4eb4fe0bd61ea4181524a7f066c470eac99a2ed0744d39"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "7c0a0dfa459e2daaa1bb2ebcf03cd59881e6178ad5ecfe27918eab333349f56d5ac9754085c41cfcca3343afca4e7092"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "cd33285cb440eef80541d211b703c475ce63f097ca2788bf843ba1b81857a5527f1f8ac1fe6d297dbb1598dc9ce513dd"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "85f3d37ad1b550e49bdd1aa79ead4f803e5a9026907bf457231698f633ee9622"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "dd654215452a2eb9a366edec57abbc43ff7efd131c1b4962a19ba9e1ba2229174a562b744f6a00388c7eb1962808c3d6730a630f70559ac03042cd9c62ab0160"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.typesafe/config@1.4.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/lightbend/config"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/lightbend/config"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.typesafe/config@1.4.1?type=jar"
+    },
+    {
+      "group" : "com.github.jnr",
+      "name" : "jnr-posix",
+      "version" : "3.1.15",
+      "description" : "Common cross-project/cross-platform POSIX APIs",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "b84aaceb5cf7f0ad649c4d3900ce0740"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "f7d6737adcbd5925d625b8f99166de2cbf13caac"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "c38ecfccd24e5f21f17a62e45d5bd454842c5db17ed42b01b868f9206d0e99e7"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "d8d2d0b5084cc93303402b3ec725a8e2ba22853443de2e228ae6e4983880fd4b2726a91c5803ff7de231b59aa3afcb088e0615439caf8600851da5d0f4ab6e60"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "f35c7cc57184e9b89933a4a03f8e2d9fdb2b00387f12969bb8da542f8b662d7698ee19fc94b85bc7aa9ee5b9157369bf"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "53e1e0b6fd3cb29acc10051e9e111ea6afc296a91ef42b5169dff407bf2f106a7523ff492132140152b790813f550b0b"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "c16d9f75650294b222cbc236362363db7a28df01028937c7f5634b94ba39e6f7"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "faa6d8fa26f59da9072218cd55f9324acb8323810dbc27b4a76d02b103a1c303c7c78a2fbe524731c1ccac21e4510a4bca655051713b832a61e5a0864613dcfc"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "EPL-2.0"
+          }
+        },
+        {
+          "license" : {
+            "name" : "GNU General Public License Version 2",
+            "url" : "http://www.gnu.org/copyleft/gpl.html"
+          }
+        },
+        {
+          "license" : {
+            "name" : "GNU Lesser General Public License Version 2.1",
+            "url" : "http://www.gnu.org/licenses/lgpl.html"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.jnr/jnr-posix@3.1.15?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://nexus.sonatype.org/oss-repository-hosting.html/jnr-posix"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "http://jira.codehaus.org/browse/JRUBY"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.jnr/jnr-posix@3.1.15?type=jar"
+    },
+    {
+      "group" : "com.github.jnr",
+      "name" : "jnr-ffi",
+      "version" : "2.2.11",
+      "description" : "A library for invoking native functions from java",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "37bce8f977e5390d7f8afdecf2854b83"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "bcf004ce358c87fc4cd2853b658d336348d0370f"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "a9c0bde792514d92e89f19de0412c5e26ee72db5989140242b2902a43b7ac7f5"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "fd979b6bfe073c711e66f380a46dbbf43424a50807c4511c95576034d0b9208f18d8bf66ad3972e9e1b01742c2c18abaf98ba0ec0bd9e2437323e8b71936d046"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "d7ef23a2fc175983e7b2541d652c51761a9de6fb5a46f9c7ce6c362ac61f63294325262a201d00899984474fdc309507"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "47514ff5e402638a6947d8e156a018bc87d8022d37254646bf3027aeea37942481bc907ef419c0a526d863f98d3b4c4c"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "e9a015c418d64cd951d22d1a739793cbc8daff3db8c5ec6b2683cd75e7503bd8"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "082f30a27fb8b485a779ea2631db01125837b8016c8b1d9f0af5cb6aee17c4de5a491f592229af503f006a679961a6c84dc01830cf125ef58dabeb0561eb2a8e"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.jnr/jnr-ffi@2.2.11?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://github.com/jnr/jnr-ffi"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.jnr/jnr-ffi@2.2.11?type=jar"
+    },
+    {
+      "group" : "com.github.jnr",
+      "name" : "jffi",
+      "version" : "1.3.9",
+      "description" : "Java Foreign Function Interface",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "5b6841b6fc76445e9b337603ecce5f7d"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "0b776ea131fa693af2c943368b52acf94131cbd7"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "d73c0f00a5ce9dbf3cb5e5bb2691a326ca3882205ec9a06ceb9006537127e661"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "622f6a975ab0f6bb396e7f134e842b26908f4cf761db71994d32a24eb8edc3da7d186c36ee1953974938add3baf93af8a4d6a927b4ebaa37e20029079e8c3cd0"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "8953d31bd09ab4557c7ee7f7fa4b0412af8a2d3c0c7c9bc22ab177da25f3fe756f08b900ad200f2d4edea689923203ad"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "88d54302addca2467a423201fbe42d3fcab61f0e68181dad730ed24321e5e64cd287f4da3a8c70750f78b7dcb47dcd1d"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "611934c537d855df60fd416ef5e7a1e8ad13c566fe56e63f80914994334f3368"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "a880e7cad2f5e44954968e6dd801242ac0f3331bb9782da2dc9e9b479456d91fd96fc66ec486b98dd8506df5d7123c2820be1ddaed52246ccb299a10fc79c248"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.jnr/jffi@1.3.9?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://github.com/jnr/jffi"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.jnr/jffi@1.3.9?type=jar"
+    },
+    {
+      "group" : "com.github.jnr",
+      "name" : "jffi",
+      "version" : "1.3.9",
+      "description" : "Java Foreign Function Interface",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "c542a6a89fff8904447f9bc17e4bde9d"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "163d683f80c06911f3e770c723d6e399e4c59448"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "bddfe460d528c68a71d0d4c9d30122f28f6f182f9ebb4be8f65e7090c4ca881c"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "fc05618a8e2e65fe7dd67cd934a58b0a0894c2d43a6244c9d4433434eec5908c6a68fdf3feef286b71a778a8b0693b34e57e668a13761de10072511cd7e817ee"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "8b6a2e5b11dc843ffcc83d75a4f9bfbc517ee05fad79705148596ff7127814dd224cf1ef7bce6db0bd4dc141bb01ff1c"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "96bc0e3ac0424619823cac358e8582c404cd7d189e0ee250cafeb10eb43022be6769f1a8f4ec033b9e9a646ba4d2268a"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "e6679ed3ee4b44b438f701866b4ce1f8ced6523c41bb192433617450b15504a8"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "4f3fa7ae1c0fbdeb8b9cd3f2ebe073ace357171dc70e1077e6f57dc9306036d9d399bb9189d6ae63e3ea317e1129aca1b40361296a0dd43bf4fcb45ecec3d3f7"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.jnr/jffi@1.3.9?classifier=native&type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://github.com/jnr/jffi"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.jnr/jffi@1.3.9?classifier=native&type=jar"
+    },
+    {
+      "publisher" : "OW2",
+      "group" : "org.ow2.asm",
+      "name" : "asm",
+      "version" : "9.2",
+      "description" : "ASM, a very small and fast Java bytecode manipulation framework",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "8f184dce9b1bedc675d4a3640d43ddf0"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "81a03f76019c67362299c40e0ba13405f5467bff"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b9d4fe4d71938df38839f0eca42aaaa64cf8b313d678da036f0cb3ca199b47f5"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "876eac7406e60ab8b9bd6cd3c221960eaa53febea176a88ae02f4fa92dbcfe80a3c764ba390d96b909c87269a30a69b1ee037a4c642c2f535df4ea2e0dd499f2"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "b2c18b3d70723daab996f109a95e75dfedce5a3833bf540a53d485847860db24d57ca4302c73b6882de855475ecb5fbd"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "f5cc30cec4da47a4bc5728ad48c31feb2cc1a22b3c32aaade4152ebe4daf4c3f96b9a314256dc8eb12dd7c1faa994f17"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "db5f04847b2d40a4a2b5ea5d3621adf09448c4eb98960daf1cde86e72f722c25"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "7ca9d699b26792d21d00333db03ddb18fc06011160ab7dd9ccf74b23c280952c69bb1bb6638650ef8dea97bca8a1f5c74397bbdb3a662c590f580e81375bc720"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause",
+            "url" : "https://opensource.org/licenses/BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.ow2.asm/asm@9.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://asm.ow2.io/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "http://repository.ow2.org/nexus/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://gitlab.ow2.org/asm/asm/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail.ow2.org/wws/arc/asm/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://gitlab.ow2.org/asm/asm/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.ow2.asm/asm@9.2?type=jar"
+    },
+    {
+      "publisher" : "OW2",
+      "group" : "org.ow2.asm",
+      "name" : "asm-commons",
+      "version" : "9.2",
+      "description" : "Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "3eb09775e1076eb0a085a4592faebc2a"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "f4d7f0fc9054386f2893b602454d48e07d4fbead"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "be4ce53138a238bb522cd781cf91f3ba5ce2f6ca93ec62d46a162a127225e0a6"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "d5bd27f9b8b4eea93635ceda3891665fc9db273818eb02d40da4b110b81524458de3f71a63e87d6bec9423ba0f2e14c20ecdf7706dfeb54f0b05aedb13a63ecc"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "e8c5569aa075340aa6ecb4d41ee3028d6fb14a863fad3199bb6d15121bea5f907a5938c6c185e28ed6b3de95497a38ff"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "a7d9b082e9a08cc760cfe994f2152ab5ca64259963ebea2267f0570f0815a6bd04614472ea68694f173518cb7d3a057b"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "89f1821bf9e6b052ea6f945eefa29991f8b886eb48cf1d2c41fc60f599bc10b1"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "8e905b194b1772e5abb9da0b2ef68617ceef0a8ea79331547ea101f6bc5d6943e17ff08c039b190853c2968a5ecffdf4029550bd78421cfbc7e743f7a14674f0"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause",
+            "url" : "https://opensource.org/licenses/BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.ow2.asm/asm-commons@9.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://asm.ow2.io/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "http://repository.ow2.org/nexus/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://gitlab.ow2.org/asm/asm/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail.ow2.org/wws/arc/asm/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://gitlab.ow2.org/asm/asm/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.ow2.asm/asm-commons@9.2?type=jar"
+    },
+    {
+      "publisher" : "OW2",
+      "group" : "org.ow2.asm",
+      "name" : "asm-analysis",
+      "version" : "9.2",
+      "description" : "Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "e62aa59de96ae29c690c3521ea4b6359"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "7487dd756daf96cab9986e44b9d7bcb796a61c10"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "878fbe521731c072d14d2d65b983b1beae6ad06fda0007b6a8bae81f73f433c4"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "6f40139d81934ee67af8f9d35ebe1415ad8641a3c667dbf38af8d8b17160198b1eb7edf11add986afaa495352966866c64928cbba23273ab83d4f2c5a93d5130"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "d33171e393864459a8683f43046551c8d568b5b82a3d5eeb49e7c1d2e1177d98ad0a439745c0904377f5bfdd344a489d"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "36eb19217d1b1802b1cd8a13cffce51f510f517ef17b504e64ca36e4896acf72876d044259a8ab2f427e84b81b32de82"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "3bdc0f463b1fcc78ff4d2bd803bd11e31fd4cafb6d96a6cb4411557a17bdf033"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "007c8fd875d898cf864e2965b427c8f890e6d6c5737b91e5a6275c9926e0a8a23f7fb06f3fe4886bd0367cf96d568f90603c3a220433658a0cf61938749c23ed"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause",
+            "url" : "https://opensource.org/licenses/BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.ow2.asm/asm-analysis@9.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://asm.ow2.io/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "http://repository.ow2.org/nexus/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://gitlab.ow2.org/asm/asm/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail.ow2.org/wws/arc/asm/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://gitlab.ow2.org/asm/asm/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.ow2.asm/asm-analysis@9.2?type=jar"
+    },
+    {
+      "publisher" : "OW2",
+      "group" : "org.ow2.asm",
+      "name" : "asm-tree",
+      "version" : "9.2",
+      "description" : "Tree API of ASM, a very small and fast Java bytecode manipulation framework",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "9c45524e94b19cc8b614b9e81ad544e2"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "d96c99a30f5e1a19b0e609dbb19a44d8518ac01e"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "aabf9bd23091a4ebfc109c1f3ee7cf3e4b89f6ba2d3f51c5243f16b3cffae011"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "99291fbf7acb7589cc8426e6cfb22bdd99c0b14c9f2c96843f47cb0cdc2d2f2004a2400c80723562721f5f399a42eeb4d2d4b874c484b0dde974a5f1fa9b7639"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "cd2fe2dc8d3f3af1fdc1307de5e3d961f3b2d619201e3aa36ecf2564edd05880235aa042e573a6d462dac0e41125d8cc"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "6a898a6b00bad8a4a58edbbdafc8e9ab2ed1fd6b72ccaed3a8a14b7ccc0ed8e47e90c51ce14fdb8de168856967346d91"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "a1f4f889b756bb3a40c2da15fd63ff4a2ee1a9568529893eae52ae937cb21c49"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "91ca4476bf58daa1fab0f2edb227be87571fa08a63cbd0a2a7b7de38a6b0439a15a8d19c5c9294fcd2b564c58ef9999c2b0e513e04c7d025b304af2bc21c6e81"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause",
+            "url" : "https://opensource.org/licenses/BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.ow2.asm/asm-tree@9.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://asm.ow2.io/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "http://repository.ow2.org/nexus/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://gitlab.ow2.org/asm/asm/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail.ow2.org/wws/arc/asm/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://gitlab.ow2.org/asm/asm/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.ow2.asm/asm-tree@9.2?type=jar"
+    },
+    {
+      "publisher" : "OW2",
+      "group" : "org.ow2.asm",
+      "name" : "asm-util",
+      "version" : "9.2",
+      "description" : "Utilities for ASM, a very small and fast Java bytecode manipulation framework",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "8562ac2619220b948cef931285b1e13b"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "fbc178fc5ba3dab50fd7e8a5317b8b647c8e8946"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "ff5b3cd331ae8a9a804768280da98f50f424fef23dd3c788bb320e08c94ee598"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "b485d43e53e7247c8b9cb34efd51dffd0e81bd4618ba4ec7ed8479607d970b08c4e36d8c160ba526e87700fb96b53d4e5b1929d8c6620687e21d03d3ae9cf850"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "a20299794f697ba37913265c7afdf20c4d0568d02c18346b40ac6a6eb2a519f1d13a12eb070bc191e9f286abe2884267"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "13a64aa12eebd0664eeb7d7de4c201cb2b0d8a814e4e8bb175265b7fcfc2870cc72b7a3b763c54cc5e951788ac2d2779"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "230e5bfb048294fc98210db296f5d79923d98b392e5c36b6bb0ac9f4d377f297"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "a60ebc59701ba7cbcb12f54db86413036c50f0fc6596321767fead9a56433ce20928f773a886c09c89aa9c97751ec3afc2f3b16e315f9e51c3459da3a6c2a1dd"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "BSD-3-Clause",
+            "url" : "https://opensource.org/licenses/BSD-3-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.ow2.asm/asm-util@9.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://asm.ow2.io/"
+        },
+        {
+          "type" : "distribution",
+          "url" : "http://repository.ow2.org/nexus/service/local/staging/deploy/maven2"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://gitlab.ow2.org/asm/asm/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://mail.ow2.org/wws/arc/asm/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://gitlab.ow2.org/asm/asm/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.ow2.asm/asm-util@9.2?type=jar"
+    },
+    {
+      "group" : "com.github.jnr",
+      "name" : "jnr-a64asm",
+      "version" : "1.0.0",
+      "description" : "A pure-java A64 assembler",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "6cb469cbbcf9eca78d50f7da595a8337"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "0a1cb8dbe71b5a6a0288043c3ba3ca64545be165"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "53ae5ea7fa5c284e8279aa348e7b9de4548b0cae10bfd058fa217c791875e4cf"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "922bdf2883c6a9cd6491289020d404ab151fd9ffa78d2ec884a2ac3af739d397016f1f4596c3e6c58744ea600fdbc2d330c8f520a1a9ab0eef6af6b667b35b89"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "933298b61960f09eccb672a0622a93a721d06cf85cdb29500ff6efdf874bad7b08aede29b6cf3b51141c16b38b250be2"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "2a7231c649f4805d34eb19c7e6b6dbb5ecdb663e29ef69a4523e2f7d2ae70740ca3aa03eba3476960d0fe344ea45df2d"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "fc270fd94a4e2b4fb1a9e4dd42ff4600c94e226ef3431aee998a915b62eb19ae"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "8ee64fec1b5e93ff9c2b596c0345ef120479217bea95d669c6e17f338a45945545b546813af2f58920a6bb2d607bd004870d10c8660a516261288d9f555fc850"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.jnr/jnr-a64asm@1.0.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://nexus.sonatype.org/oss-repository-hosting.html/jnr-a64asm"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.jnr/jnr-a64asm@1.0.0?type=jar"
+    },
+    {
+      "group" : "com.github.jnr",
+      "name" : "jnr-x86asm",
+      "version" : "1.0.2",
+      "description" : "A pure-java X86 and X86_64 assembler",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "00670735acb2a9d1421b506dc7d338bc"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "006936bbd6c5b235665d87bd450f5e13b52d4b48"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "39f3675b910e6e9b93825f8284bec9f4ad3044cd20a6f7c8ff9e2f8695ebf21e"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "e928926b01ce545144c1bbf160edee9b923773e32f9a399a71c2ab5e8325d9cbcfb41f41c8f008b80d1beab8da1c4b74845996479c07ed73bc131959911d4762"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "91839815885716f1202a824b195a475d4d7561690192b42cf05b8c6432556a3e7e2dab13b6e970986a97711fb7060844"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "ed27f9b39907e92805c2d6ae6a045e00e24f51544501df3b98b593177df4fe55fee2347c668df66c2ea6fae64c66ee0c"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "f2e4e4807f6674a5b428cebdbdd01e8cadbeee71b785a046bec2bec1de63a41b"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "0dfffcf0daac9513b347ab8bf22887360feea890428e12857d7d3400400ba498fdc61307d9fd9c6a5e1baa9a96279afc07bba08c6229ed4ede71569d710fd0f6"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "MIT",
+            "url" : "https://opensource.org/licenses/MIT"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.jnr/jnr-x86asm@1.0.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://github.com/jnr/jnr-x86asm"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.jnr/jnr-x86asm@1.0.2?type=jar"
+    },
+    {
+      "group" : "com.github.jnr",
+      "name" : "jnr-constants",
+      "version" : "0.10.3",
+      "description" : "A set of platform constants (e.g. errno values)",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "f1e246b219c056d222ab11bcfda5d6a0"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "af19ec7359dd72cbc7869c00bf7cdfa4c308e985"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "a617b0d8463d3ea36435bd1611113dedb3749157afd2269908ab306c992aefed"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "d177b951e42a4035ad3ae5be98abeebf7c7378ce79d22544ef2ace54ae9d6855467c8549a64cc9a08d75273985bd0f417ae70afdc55db884900314a1728304a2"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "74becf1e80d1c4e55df5973783a27c067a63507dae8c929cb1fcb2d1040ff5ffcb3ec42598ec7bbcb9eee9fcf3d80151"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "916804fd2a5495e9a742600bdd7c18042f39ac7594828ec1706270f919ca55f45b83572e3eacf590b301b9ed0e4b3c3d"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "7a3026583807d377f6a4e00b25003dfd6e3a44ab8e6f1e27af27786de2dc05ad"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "910397a0f1e7321ee1905cb802a388234a786a901653218be98a6c9edc02d0bd89a5055608a91c279ea01e2542ae0cc2d8f5c20e01e5f025362121a0e245d604"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.jnr/jnr-constants@0.10.3?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://github.com/jnr/jnr-constants"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.jnr/jnr-constants@0.10.3?type=jar"
+    },
+    {
+      "group" : "io.dropwizard.metrics",
+      "name" : "metrics-core",
+      "version" : "4.1.18",
+      "description" : "Metrics is a Java library which gives you unparalleled insight into what your code does in production. Metrics provides a powerful toolkit of ways to measure the behavior of critical components in your production environment.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "90714299f0328330f69aeb8364f0f559"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "5269d9e6872a8112c762f668dc7229dee127e745"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "a735eb5b62f425181efa53aefa5b7edad2b0e48cd0fa91105aa0ec1a45169e0b"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "d6ff8d839f5ab59d5bfea5a108a9500978c1b97fd9fd4d42df0b32cf28dc9ccaeead70c2e34ce4b1f8dd720b28bed6690d066c3dc5c2e5f69017e28ae731dc26"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "cb5c29f8505c5abfe971f9adeeb78137d8cd5323100724a2718271092c080fce27707f1896ff8180ad34d8ea545203f6"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "3f75d2009e57215bcd9b82f6e717d57295e1e7d5d1be5a500a276a619de87e4830869da49276ac21fa64bd4db76860b0"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "9e24c7ac9cb850d322161ac1a4384adb62326a1f9425964550f7a662a26947eb"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "9b53aaa23f714dfcedc21c7e32f69dac30bd1c935b6eaecc56434703047724e4d5d17d2c8cee0d3fc56c41c7eeda4e2d4aaa5c707fe8df82302521b0c4b4851a"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/io.dropwizard.metrics/metrics-core@4.1.18?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://metrics.dropwizard.io/metrics-core"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/dropwizard/metrics/issues/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/dropwizard/metrics/metrics-core/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/io.dropwizard.metrics/metrics-core@4.1.18?type=jar"
+    },
+    {
+      "group" : "org.hdrhistogram",
+      "name" : "HdrHistogram",
+      "version" : "2.1.12",
+      "description" : "HdrHistogram supports the recording and analyzing sampled data value counts across a configurable integer value range with configurable value precision within the range. Value precision is expressed as the number of significant digits in the value recording, and provides control over value quantization behavior across the value range and the subsequent value resolution at any given level.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "4b1acf3448b750cb485da7e37384fcd8"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "6eb7552156e0d517ae80cc2247be1427c8d90452"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "9b47fbae444feaac4b7e04f0ea294569e4bc282bc69d8c2ce2ac3f23577281e2"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "b03b7270eb7962c88324858f94313adb3a53876f1e11568a78a5b7e00a9419e4d7ab8774747427bff6974b971b6dfc47a127fca11cb30eaf7d83b716e09b1a0d"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "06977d680dafd803d32441994474e598384a584411a67c95ab4a64698c9e4cbd613e0119b54685cea275b507a0a6f362"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "b5ccb4d39bf7cc8ccc33f0f8fcbab0a63c99a94feda840b5d80fc3ae061127f1475cfb869b060933783a1f2eafb103a1"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "ef2113f27862af1d24d90c2028fc566902720248468d3c0f2f1807cc86918882"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "4fca2f75bdfd3f2ac40dc227ae2ef0272142802b1546d4f5edf9155eaeed84eff07b0c3a978291a1df096ec94724b0defb045365e6a51acfdd5da68d72c5a8eb"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "CC0-1.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "BSD-2-Clause",
+            "url" : "https://opensource.org/licenses/BSD-2-Clause"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://hdrhistogram.github.io/HdrHistogram/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/HdrHistogram/HdrHistogram/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "scm:git:git://github.com/HdrHistogram/HdrHistogram.git"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12?type=jar"
+    },
+    {
+      "group" : "org.reactivestreams",
+      "name" : "reactive-streams",
+      "version" : "1.0.3",
+      "description" : "A Protocol for Asynchronous Non-Blocking Data Sequence",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "69122b098fff1c6b1bf2cd3b355e7e03"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "d9fb7a7926ffa635b3dcaa5049fb2bfa25b3e7d0"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "1dee0481072d19c929b623e155e14d2f6085dc011529a0a0dbefc84cf571d865"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "aafc86186d82b4f3bd44ef7f955978481172eab267d208aa80b24f8ca218bd902d69b587fcae2fe44a888b7a9f81fc5a209e837958307fdc0ee815248f7065f9"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "dde10163531896f3b60261795a977cea1d0114514e8fc95f1ac4b6f34789c4b78c4c83ead210901a2edb3cae9f113ed4"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "4f9e101774f39c8ebcb2ccd3f2fe996a1f99bd879fa34ac9ba319e824752f6bdc6159d242497d38587d7191bba796e3a"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "45c5459f651963c5797e32c87e3b8456238229f9f9e64f543eb21d6a6b7a812e"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "9edc79ccfd2edabe1339ad79a10137cd0f1614671f976d6a8a603428b8e5179c9a6afbf4f9fcd44e6e3795be5c487cc5aa97a1d3e6d9a3e88a62d3f4de60a2ab"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "CC0-1.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.reactivestreams/reactive-streams@1.0.3?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://www.reactive-streams.org/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.reactivestreams/reactive-streams@1.0.3?type=jar"
+    },
+    {
+      "group" : "com.github.stephenc.jcip",
+      "name" : "jcip-annotations",
+      "version" : "1.0-1",
+      "description" : "A clean room implementation of the JCIP Annotations based entirely on the specification provided by the javadocs.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "d62dbfa8789378457ada685e2f614846"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "ef31541dd28ae2cefdd17c7ebf352d93e9058c63"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "4fccff8382aafc589962c4edb262f6aa595e34f1e11e61057d1c6a96e8fc7323"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "02fcd16a30d0e68b3e9e4899731181c6abb7117baa15c096ca940e01dde08bb86101cbeae552c497f8a90d923b5fa2f2b6f3850baf8dc94dbd399887924a9069"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "88b0ecfde391a3d8468349c70e1539569768dfac3233dfe0b4660904df04e6c6bf26ed9c0784b9b22c122c3448e2a6b6"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "487b53f48b55b98a61ae60abedc43543887944867aa6bcb78d5ed46e2d0d7c19510c5fcadc362d939313feafdcfc55e1"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "3e79c8f58865d2d58a5311a8bb45772007f07e7f3ed2780784d1e4382dc934d0"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "ff32665e1b6d8176ccc7e8c836ca7343c2603dab053e42d79b4258d51a14ff63933c67d24034169ac91e11ebda21cc2c84a2a540072e656d2a8e6fcea7808421"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://stephenc.github.com/jcip-annotations"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "http://github.com/stephenc/jcip-annotations/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://github.com/stephenc/jcip-annotations/tree/master/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar"
+    },
+    {
+      "group" : "com.github.spotbugs",
+      "name" : "spotbugs-annotations",
+      "version" : "3.1.12",
+      "description" : "Annotations the SpotBugs tool supports",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "3e611c2dfc7976b3732891874d3acc3b"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "ba2c77a05091820668987292f245f3b089387bfa"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b0954eeb5fbca69ab648dab24e812e24587ad67638a101d8fd16363431da7cb7"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "8b4eaba6a44232b3e62f37eaac146c2bd2222d4ab1bc27a8de80130d06d22ab4383c62cf05f5a7ffb7e162b81490c81b1e84d42c6a6ec5a379221a8435edcaed"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "24ed0c1c67425e255d8005fefbdea700cf2607bec58f4393926e71a4c88abdb41a182781694e83128496c8ff81e217a2"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "de4b2c6020282dfa7027ddb2f4638db914d3c8a8cdfac2153a8fe1ca180b53ce6ad52218de494c8f10a0c70ce78466bb"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "76f6fd161f4425218f5e88590fbf55a8466ca642c7e6138bfe058f6a817fe026"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "50b9e0ef38f08bd54c21440d8786b13fe39c22122f04bcfc1ca1e7007e039c9f302898cf07aade510cfbd9f94886bcf93560cb3aa32b273b1b9e01fcf986ee51"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "LGPL-2.1-only"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.github.spotbugs/spotbugs-annotations@3.1.12?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://spotbugs.github.io/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/spotbugs/spotbugs/"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.github.spotbugs/spotbugs-annotations@3.1.12?type=jar"
+    },
+    {
+      "group" : "com.datastax.oss",
+      "name" : "java-driver-query-builder",
+      "version" : "4.17.0",
+      "description" : "A driver for Apache Cassandra(R) 2.1+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's native protocol versions 3 and above.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "6ded11025ad4b77f7b2900d23adcaaf6"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "7bb3d00139594000f4e49a76f6afdd53789074d2"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "1d98c0075a447e403ff1e89211f09b29e8e798475fa9c251269ad924245707bc"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "9bd1707458a4e5cb4766a81aa2b3fc1ff7a98475cf629d80aa59ac35863615b828d7395503b8d59a86397f7c2cedbb860498abf70022873b7d1bcb1e83593198"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "be16c336e751d229137cc91f6f7137e7e538e75edd1bfb7ef6e28dc17962745a57bc9b1dd51283cbf45d61b3a56d8eda"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "c19150a323d498a1f9f72f929319882dc91bd0df0615e514f4773bb04d37524f0a8e53e863fcbb9f73c1332597b615bb"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "7211b402a5b75765af7073d847d3715095e69fdae192658584d47b0947ec86fd"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "bebfb98cc9f2b94361737dbd9e57b245ccbd106cb14257774eaa23952507141f859340abecc2886b951cc90da9d82372479f929de4689ce52c68ab83e6f463e7"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.datastax.oss/java-driver-query-builder@4.17.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/datastax/java-driver/java-driver-query-builder"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/datastax/java-driver/java-driver-query-builder"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.datastax.oss/java-driver-query-builder@4.17.0?type=jar"
+    },
+    {
+      "publisher" : "FasterXML",
+      "group" : "com.fasterxml.jackson.datatype",
+      "name" : "jackson-datatype-jsr310",
+      "version" : "2.15.2",
+      "description" : "Add-on module to support JSR-310 (Java 8 Date & Time API) data types.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "94d6cec0fe6ad8b81752beb500bd4bbc"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "30d16ec2aef6d8094c5e2dce1d95034ca8b6cb42"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "7574c81ad570476ef6aad26f419288fd466733f3315bee3012f2f29c9dc008c8"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "3036ff042d09342d36e90960103ec57c77549b85e2c370dfdd57673195141fea6edbac29fa598cc1d1edf56e4d457b7b838dcdc3f50acae1cc70b5905e075301"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "38a75ac595705f1f518c461009280318fbe85b3aab04a68b15e736b3365e20ea17c5db28e46da0d89673b223307b800f"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "5f73012de6ca68e69e21bac475a9ed504e1923abf15fb73da56576c0b381d9913bb51ad45906988c085ef03487b4d774"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "a6991fef42c63f2f16758232fc2e6855bad4d21ec8cefb26a3a6308cf40d1388"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "730eb8e065c28d87f313a9659d261b38827752a7e84dc27ef074efbdddd954a69c6a91052680cd23f056dd6778f7a3fc66bf17a92b557f35d38f69e114e5b737"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.15.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.15.2?type=jar"
+    },
+    {
+      "publisher" : "QOS.CH Sarl (Switzerland)",
+      "group" : "ch.qos.reload4j",
+      "name" : "reload4j",
+      "version" : "1.2.25",
+      "description" : "Reload4j revives EOLed log4j 1.x",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "ca989b9d69c90159dde3b1594e99d58c"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "45921e383a1001c2a599fc4c6cf59af80cdd1cf1"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "e71115175c4b080cf51dd72097165ea001ff9fafdc4f79d88049d0b1ecca979c"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "a81e53780dccb36677471b9e6fbf25fdad49f68105a36b9a6708b1419ca9adb2957187ee1f8213add8c17a8a8bed1e744414fcf2833710990596fb780731bf5e"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "4202e04f302bdd94fa3bfc39361794cff964749b5fbb825fc4ff4a749f85cd373f0dd2d807911e81b4bcff86165a33cf"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "ab6258e3bc3f5a6cb9d09a97a38c2ffd5db13eb5c2edc8dcff15afb392fce9d22bdfd0afc7666445bd1e9241d6fc3bc8"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "c48729a82186195197dec4589b0795bab4f9cc96ec0e72d0ad04fe5459c5a438"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "a6932a3935c8ac1361c42736c792937bc96025a42f3d49e8569d790e3a6af23f11cae940666a433e3e2e020e3be2e2f824d1c3f45bcfee8fbfe92ec1cd919df5"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/ch.qos.reload4j/reload4j@1.2.25?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://reload4j.qos.ch"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/qos-ch/reload4j"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/ch.qos.reload4j/reload4j@1.2.25?type=jar"
+    },
+    {
+      "publisher" : "Oracle Corporation",
+      "group" : "org.glassfish.hk2.external",
+      "name" : "jakarta.inject",
+      "version" : "2.6.1",
+      "description" : "Injection API (JSR 330) version ${javax.inject.version} repackaged as OSGi bundle",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "4d7c80a1e3cd54531af03bef4537f7af"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "8096ebf722902e75fbd4f532a751e514f02e1eb7"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "5e88c123b3e41bca788b2683118867d9b6dec714247ea91c588aed46a36ee24f"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "7fc8196ad9ee03a831dfff85c945e416c3906071a7aa8ebf6ab8b7008dfec0adccc1f1dca53ed6768ac5676cd4b3c43471674f97ff73e1f61f5a427aaed68e05"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "6b3ea9eeec5cbbc1fb3e6c89160af67b82ffbd68948dd4790e3fe3ce2fc495c063698a7d6a1998d5db51abafe3915e19"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "b551e00861151233789c03cec07e162d90d1f377fb8f26d413f7015152188183d636e2837ceca131096c43511e618efa"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "67f3b5a4b3006d07a33ccdbbb70f312c94d2d8cdd32598d471b079470574ab6d"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "a0b6c00df7f5b53f549193a7e6a26d632847957ad296aef2ee75a23a5ebdec970f793511641e6c63677b481c47ca67f4039a5ee5f4bb532a46093a201782198d"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "EPL-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "GPL-2.0-with-classpath-exception"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.glassfish.hk2.external/jakarta.inject@2.6.1?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/eclipse-ee4j/glassfish-hk2/external/jakarta.inject"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/glassfish-hk2/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/glassfish-hk2-dev/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/glassfish-hk2/external/jakarta.inject"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.glassfish.hk2.external/jakarta.inject@2.6.1?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "jakarta.annotation",
+      "name" : "jakarta.annotation-api",
+      "version" : "1.3.5",
+      "description" : "Jakarta Annotations API",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "8b165cf58df5f8c2a222f637c0a07c97"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "59eb84ee0d616332ff44aba065f3888cf002cd2d"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "85fb03fc054cdf4efca8efd9b6712bbb418e1ab98241c4539c8585bbc23e1b8a"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "d1acff146c0f9ea923a9325ad4c22ba2052ec474341ab8392abab7e8abd3ca010db2400ff9b5849fc4f1fa5c0a18830eb104da07a13bd26b4f0a43d167935878"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "004a4bde333c0575f72df1cb9cf95ee0c6c7f738a6f0f723a5ec545aaa1664abeb82f01627708a1377e3136754fb7859"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "abcc5b1fbad59b3e9b6d2d6195ec11d6254f689116c534a964724b61f815cca60ba3a2c1489933403f3f78dc54fd20a6"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "3d3ef16365e7a0357d82f874fa26b2b0a146cf7bf98a351c65ef1586444fa009"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "88625a8811be514851209291344df32478b527bc7838ddee58752269bf2457ae8f4e6b6a0d0b5c18522e287ba6df1def0cb19dee2b85e01ee21f0b48ac2630d3"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "EPL-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "GPL-2.0-with-classpath-exception"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://projects.eclipse.org/projects/ee4j.ca"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/common-annotations-api/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/ca-dev"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/common-annotations-api"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "org.glassfish.hk2",
+      "name" : "osgi-resource-locator",
+      "version" : "1.0.3",
+      "description" : "Used by various API providers that rely on META-INF/services mechanism to locate providers.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "e7e82b82118c5387ae45f7bf3892909b"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "de3b21279df7e755e38275137539be5e2c80dd58"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "aab5d7849f7cfcda2cc7c541ba1bd365151d42276f151c825387245dfde3dd74"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "4d84983a9b1c72f58661b576c78ca456a2106602c2ad211cd7e72d94464c8774173b34a35629c507c7c84c982f1de0c9bf48352458e8480be5f874d20d6e69a3"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "9f92002296c66cc8996d459b95a9c531ec71b98a8b819121abbc7d636a6c4ace04c88878ba6917f71650280a880d1ce2"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "b27581d003ce715fba7e2958dbe73b64330b8586d94dd2f4b80b3d4861fd36415af6c2fe1005a798a7bd4f706d77e3d1"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "cf90e96adac2f1167ff71267db4a91c75d824f8a4b0359d2ab7d50b1c87c3952"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "75f9ff6c3ab03f4471ac04789c181b75edf4c5dbf985a5616b2c979de59aa478b02593036f740a6c7bb71afcb145c131a3ff3e5a6a53336abab22f2cc9825772"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "EPL-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "GPL-2.0-with-classpath-exception"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.glassfish.hk2/osgi-resource-locator@1.0.3?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://projects.eclipse.org/projects/ee4j/osgi-resource-locator"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/ee4j/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/glassfish-hk2-extra"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.glassfish.hk2/osgi-resource-locator@1.0.3?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "jakarta.validation",
+      "name" : "jakarta.validation-api",
+      "version" : "2.0.2",
+      "description" : "Jakarta Bean Validation API",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "77501d529c1928c9bac2500cc9f93fb0"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "5eacc6522521f7eacb081f95cee1e231648461e7"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b42d42428f3d922c892a909fa043287d577c0c5b165ad9b7d568cebf87fc9ea4"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "3ca8556b80ca809b3a43fac31469702bbad62a00e63b11a304dad1e372d9f6c128357463a4c70c423055941c7e2e417f87a9474a204d189c8e4b62f42047c8eb"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "6ae3963fd6a5e83b068a8344b88f6bfbd26d29cee64193025bc5e98195678e49826463da27a7a1c15cd83b2149d57a94"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "55a570386718064b422f9ebc0c0c07f0b37259e44a14c9a16c20e945402339b1d01b7d6969ef40d6b5baf5bce3e1161d"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "1ff48fdabab86a398b25e491e6ba4fd9b62d597314202628a3cfedf723c17f21"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "c23bb0b43fb0c39d4c9d2cce0cd38334fa7c253130f0bda3007d9f7d2dd451c0896ff4265ee2cc35024fad282f9ccaa398c19874775d9cabbb786843fae155d7"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0",
+            "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://beanvalidation.org"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://hibernate.atlassian.net/projects/BVAL/"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/beanvalidation-api"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar"
+    },
+    {
+      "publisher" : "Eclipse Foundation",
+      "group" : "jakarta.ws.rs",
+      "name" : "jakarta.ws.rs-api",
+      "version" : "2.1.6",
+      "description" : "Jakarta RESTful Web Services API",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "c3892382aeb5c54085b22b1890511d29"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "1dcb770bce80a490dff49729b99c7a60e9ecb122"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "4cea299c846c8a6e6470cbfc2f7c391bc29b9caa2f9264ac1064ba91691f4adf"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "c1e2655269b9a32f9c0aec9edf12bf6d8b397d8cbcf60e28dd21ab13ecc2738800ebe5c2d49ed3c50d4dac6617671f0fae873daf8ec116a16ef7f7f0a3bef7fa"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "3fd05e2b167d927216d3b2fc9d1c5a70aa3911d075c2159f958ce755c6a41d93bd76f0ce79ccd22e5a60182aa91fdb07"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "3a110ff82d6a0dba4adf024a6425e68689416dd8f0e841f2bade574dfaebcbcfede410116530714b68ef9d32a318c286"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "794fe21a9e2634744c65b299a232756391316c0b71e440973575bcde78907c17"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "fe482041b54c5f7a40d670af73c0c0c0a562bf74f4bfd684f8aef56decfbc5230901768814f7d0b0ec600828fea39bb8621cd121f616778278a03f67fd497310"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "EPL-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "GPL-2.0-with-classpath-exception"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@2.1.6?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://github.com/eclipse-ee4j/jaxrs-api"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://repo.eclipse.org/content/repositories/jax-rs-api-releases/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse-ee4j/jaxrs-api/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "jaxrs-dev@eclipse.org"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse-ee4j/jaxrs-api"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@2.1.6?type=jar"
+    },
+    {
+      "publisher" : "Webtide",
+      "group" : "org.eclipse.jetty",
+      "name" : "jetty-server",
+      "version" : "9.4.51.v20230217",
+      "description" : "The core jetty server artifact.",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "43bcc211c126b7cd06b966940c84f569"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "d0572c8460eb26adf8420e78535d95859c89a936"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "72f19a7f88e91244d5170045d7d44143508845b01196f87b2a1b56a5ad16d378"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "e9d3f7104214a16435d077eb53d943130b3a85bf9e8a48b9e40a7ad063ca3cca69324e03f21202e66fc5fd864c3cb09cd1857eff8d682c69398b4d75c1a430c6"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "532b36091646b5a4ccc2f5c31742c0c9f863a5ea1cde7f9d632954cb20f7fd5fc2e64cd5889927508dcc9900a6b8fda4"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "66279c965ea96e5fc9b9a7676b96f9819fcccd2cb2b09ec31e2ac0c3b46330b90418d8fd1270e244bb695d14fadac8f1"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "82d499228fd3b65544b13d0af643decd52e920ad5b34561ec9d661708d2bac98"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "be7c3c0418d58b0ee9876bf9958fa6d1d86b10e9a04e0cef779bdda00a3d32bf624e79c627775f6b505f7d58bc4d2dc7147ab3a72cde7cdc256bec921ca7f8d8"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "EPL-1.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.eclipse.jetty/jetty-server@9.4.51.v20230217?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://eclipse.org/jetty/jetty-server"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse/jetty.project/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse/jetty.project/jetty-server"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.eclipse.jetty/jetty-server@9.4.51.v20230217?type=jar"
+    },
+    {
+      "publisher" : "GlassFish Community",
+      "group" : "javax.servlet",
+      "name" : "javax.servlet-api",
+      "version" : "3.1.0",
+      "description" : "Java.net - The Source for Java Technology Collaboration",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "79de69e9f5ed8c7fcb8342585732bbf7"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "3cd63d075497751784b2fa84be59432f4905bf7c"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "af456b2dd41c4e82cf54f3e743bc678973d9fe35bd4d3071fa05c7e5333b8482"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "32f7e3565c6cdf3d9a562f8fd597fe5059af0cf6b05b772a144a74bbc95927ac275eb38374538ec1c72adcce4c8e1e2c9f774a7b545db56b8085af0065e4a1e5"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "8bf960fd053ef6ad1c3535824311f676b9ad537678b85f855dd5d6d726e391f8a7be9c9c76a8ae3ce8bfe671c1e2c942"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "e8f3282c08ceeed02947a13e886a3d75a6ea63e4f869a0e0bcbcf622e7cbffc81ed7bc045e82820443b6572c897cc4cc"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "8acc3481503989e1a78ad619bcbdc005b616c13736522b52e5ae5d782e8a0216"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "ab5f85d424640ddcf6fc13a41d12ffdee0be9508cd4cdc581168b31cf7917323f6e0d984a0631068e0e01c098098fe0037d1c4176352fd89ba3a4da5d641ca3d"
+        }
+      ],
+      "licenses" : [
+        {
+          "expression" : "(CDDL-1.0 OR GPL-2.0-with-classpath-exception)"
+        }
+      ],
+      "purl" : "pkg:maven/javax.servlet/javax.servlet-api@3.1.0?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "http://servlet-spec.java.net"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "http://java.net/jira/browse/SERVLET_SPEC"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "users@servlet-spec.java.net"
+        },
+        {
+          "type" : "vcs",
+          "url" : "http://java.net/projects/glassfish/sources/svn/show/tags/javax.servlet-api-3.1.0"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/javax.servlet/javax.servlet-api@3.1.0?type=jar"
+    },
+    {
+      "publisher" : "Webtide",
+      "group" : "org.eclipse.jetty",
+      "name" : "jetty-http",
+      "version" : "9.4.51.v20230217",
+      "description" : "The Eclipse Jetty Project",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "4aca5bbdb562abfc733222bb03da3cc6"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "fe37568aded59dd8e437e0f670fe5f809071fe8f"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "924d254a7e4dcbb699b722940b005bfe1bd4a68a8d44d7dcf3e0a935faafbba2"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "606d0446a948c7a349cba5415d079bd054e43a8a09727c8300865f38678c5101642ecafa777d5f979bde1bd520543a4cf83348fcd9a444e6681cf773eb3c5824"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "67eee23e429b2aef688b6fe598e658451e14ab4d95dcf9ce799df4ab538fa36bd08841800435afb2b207769ed613cb52"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "63b517cb42a440259f529fdbc4bd1a13969ad6b9d59a99b50f333627bcc1ca465b21662f2683c08ba3d18b58c8d4118f"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "63e81a402243777762f88e65dcf58577a7c804f46be189fdb32c6b7a4d0eaa8b"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "72c3baf988564e529ffe1e7a3eb4c3386066487fd5b500e257c16cfdf261e2dd9969603e3731852b3b18509e09f2a27367b8f1f6bb21f9997eadc14f54af6248"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "EPL-1.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.eclipse.jetty/jetty-http@9.4.51.v20230217?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://eclipse.org/jetty/jetty-http"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse/jetty.project/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse/jetty.project/jetty-http"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.eclipse.jetty/jetty-http@9.4.51.v20230217?type=jar"
+    },
+    {
+      "publisher" : "Webtide",
+      "group" : "org.eclipse.jetty",
+      "name" : "jetty-io",
+      "version" : "9.4.51.v20230217",
+      "description" : "The Eclipse Jetty Project",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "f030b7fc7ff17b80aad37f8d79b9816d"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "a11a0713b17334a5b6e694602fbd1a9457cb5fdd"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "b73b26c5a531b02af0d775f0574c2889665449168723e4322d36de6e8e74848f"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "95a4fda08d3f41b71c1d4377d910403a271d42f481741f4fdd474aab1edf3e4ff4eed74c9cc0d2c10883332d2a77ab8f988424be39d02e03010f2cd175224b8f"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "850736c84eb8e90025689d89d8d3e850deaf3757a5de5b39704cea032506b6d076a36f23b552e3577043051cef0633f5"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "4b858b49deda31bca901e414f6bbe5634c036c2b0e0545c45ce1f5fdfa730a7fa82b84f094089d0c1eb9b04bcce32fa8"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "1860748dfdb54ea287542d66bc3ac75d38c71d08526435e94ccb478ed24efe1c"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "77b3144f062dcc5bae8d475b11cbdf4f03d7e80fbf8bf9e89092f86f1129b3a8a4e5ba43e92fae076c3e8df8ad6774c1babf12a5b4cfefeae0f32829ff410538"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "EPL-1.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.eclipse.jetty/jetty-io@9.4.51.v20230217?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://eclipse.org/jetty/jetty-io"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse/jetty.project/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse/jetty.project/jetty-io"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.eclipse.jetty/jetty-io@9.4.51.v20230217?type=jar"
+    },
+    {
+      "publisher" : "Webtide",
+      "group" : "org.eclipse.jetty",
+      "name" : "jetty-servlet",
+      "version" : "9.4.51.v20230217",
+      "description" : "Jetty Servlet Container",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "885b21364f32daa6973b91384feb7af2"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "3ec1be0b1ca49b633dd7de0733d0054bb4763965"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "c3b468238313c078f3f48eaec3b6317fcc9c8ebbe0d58d992bd4361796e2b9bb"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "2dcae09f0665292fbff133cb6ec3a733ad279bbc80e4c9c3239e83973033f3bf8f3cd3da74857dae4328af11fd7701109175d240b5aa4849af0903dec24aaa1a"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "bc3066540fe175e86979adcbe8895b41c21fea59387b83be127bb89ee9a2beba7085756e632199b3b3dd136a64fcb366"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "b221cfd21644b0a5af75b1e72332ffae02171bedd9918df5e343773d1a6356272189754ff6a4e07d5e851f680f475a4d"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "15a691da5dfec288e86947138091af31b746c34b7c1576437b2b4da828c9b8d9"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "cbb21890d4f8148cb3b12d1ace95756cf16afca2eb015b5e915ac0a80c25f4c29d3ca758b11d3ca6c90e71781111e5ac2d1a34068823e9650691b6a493ca232e"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "EPL-1.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.eclipse.jetty/jetty-servlet@9.4.51.v20230217?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://eclipse.org/jetty/jetty-servlet"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse/jetty.project/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse/jetty.project/jetty-servlet"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.eclipse.jetty/jetty-servlet@9.4.51.v20230217?type=jar"
+    },
+    {
+      "publisher" : "Webtide",
+      "group" : "org.eclipse.jetty",
+      "name" : "jetty-security",
+      "version" : "9.4.51.v20230217",
+      "description" : "Jetty security infrastructure",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "32856002eff1429b87fc1e5ab654c699"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "a3342214ce480cc5bb8e74fe7589dd0436a5d903"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "57aa5bc98356f12c7b0025470ca0ba2af91b58fc7c9549cea6b194d64f02aaa6"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "b954986e58009535f9bcfb74d9620194f4f64d54be328150388519f119afc7800af59af64b4e4d2d8c7a024ee429eec9f0ee1ce7a7ce906b135c0da6e76cd0c7"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "726f55edab1f6a80e27ed494c0b18beb4182cf133718493eb60a3eb6b35461364a5973aa3c6f88a4d9eb902aeb0d2893"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "59f2649de43e69faf47d82eb38cd339b0c2dc0931e13b1ca07e6084c0ce31e20f211407c7a262a983d4f74b0de25ffa0"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "d7ddec9f74f06e0ba47cee809798eefc5496d6425b6c8b50bdcf6d44827b4ae3"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "94ccf44a55490a18571aba64082ee52c2b9ca8aea0b27a49c5a06f5a46caabc7ddc80b063fec2e89780c75cecb8a4adc9a7a7620c4b2f4cbb63e8f420a80f822"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "EPL-1.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.eclipse.jetty/jetty-security@9.4.51.v20230217?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://eclipse.org/jetty/jetty-security"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse/jetty.project/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse/jetty.project/jetty-security"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.eclipse.jetty/jetty-security@9.4.51.v20230217?type=jar"
+    },
+    {
+      "publisher" : "Webtide",
+      "group" : "org.eclipse.jetty",
+      "name" : "jetty-util-ajax",
+      "version" : "9.4.51.v20230217",
+      "description" : "JSON/Ajax Utility classes for Jetty",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "3f105aee42b11a9264370602224a8eb8"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "3b2a998a5ed1f93bc1878fa89d65e307d8b8ebaf"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "fb0e92684423b2c9b0818259faa95a75a700003623a9af1a8ca1ab6603a53679"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "5cef445364472bcfde6992987287d1406a2d5c9b8367426fe273afe3c5e1b0837e563e1d38a5fa1ed0d4b76ebd789cbc5e274d0ac8b8962c5424a72e0b74971c"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "643756fff0d49c7e36f7a6516c7f6e3a2aaf7dd6cd79f4d98d80cdd64a53c690177555bc1046551f2d9978f01f362837"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "de74d7ba2e1140c46f32a7b5135364e76373800d7da5991adf49f9232f03210d306e97135682ec10b08cf44f240440e3"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "3c46ffd47a9ae324773c95a8dae883ccefb55a494ca8732c9d47b5de1b2cb4f6"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "1bb1e67168796bc2c36ff1f8d72eaa5fccdbf137eac317b93e1c0e5106c33f57138bb04ab9ac3631734882dbdd16ab827e4e85f2454d8429245aa50899a6eca3"
+        }
+      ],
+      "licenses" : [
+        {
+          "license" : {
+            "id" : "Apache-2.0"
+          }
+        },
+        {
+          "license" : {
+            "id" : "EPL-1.0"
+          }
+        }
+      ],
+      "purl" : "pkg:maven/org.eclipse.jetty/jetty-util-ajax@9.4.51.v20230217?type=jar",
+      "externalReferences" : [
+        {
+          "type" : "website",
+          "url" : "https://eclipse.org/jetty/jetty-util-ajax"
+        },
+        {
+          "type" : "distribution",
+          "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+        },
+        {
+          "type" : "issue-tracker",
+          "url" : "https://github.com/eclipse/jetty.project/issues"
+        },
+        {
+          "type" : "mailing-list",
+          "url" : "https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html"
+        },
+        {
+          "type" : "vcs",
+          "url" : "https://github.com/eclipse/jetty.project/jetty-util-ajax"
+        }
+      ],
+      "type" : "library",
+      "bom-ref" : "pkg:maven/org.eclipse.jetty/jetty-util-ajax@9.4.51.v20230217?type=jar"
+    },
+    {
+      "publisher" : "Webtide",
+      "group" : "org.eclipse.jetty",
+      "name" : "jetty-util",
+      "version" : "9.4.51.v20230217",
+      "description" : "Utility classes for Jetty",
+      "scope" : "required",
+      "hashes" : [
+        {
+          "alg" : "MD5",
+          "content" : "724ec938895f5ace1d40a721fcb6b667"
+        },
+        {
+          "alg" : "SHA-1",
+          "content" : "a11df06530a3a28c9af7ff336730a2f8e18e7205"
+        },
+        {
+          "alg" : "SHA-256",
+          "content" : "9fac4168b1ae543c5c29f48008cd118c70779aa701d60f37f52b57c104b6536e"
+        },
+        {
+          "alg" : "SHA-512",
+          "content" : "12725e106000d6ef672c474e467d7c976c3913b2d39a92e7304cc30d0e0d1f92575227d2c2201b97ca50f39cba81ac8b79bccb2b32b63d758ac4e192173c3f62"
+        },
+        {
+          "alg" : "SHA-384",
+          "content" : "8b2f1ed8d487d1ea2cb31a0be138adb4920322d7accf2a9770ed3ca368ddb927f38e5141c456c2f8c3fce1e71b681651"
+        },
+        {
+          "alg" : "SHA3-384",
+          "content" : "9e4b13ad62f64c85640a0d347801ac168145a2e15ae72139bd2288cf88e79d1bc337e587bbef073f11ff9431f81dfae7"
+        },
+        {
+          "alg" : "SHA3-256",
+          "content" : "ffb906d2c6dd31eda6ee2c0a289d9b1223d4327eb57b9085c458a8cfe2ed2e62"
+        },
+        {
+          "alg" : "SHA3-512",
+          "content" : "1c7d318dd7e38a9d79372edfb9ed2e0597e08b88171fe5e37563be13bcbb8fe6e82048ba23b5418ce3af4b56629a58b5c79f0e134883b9179e9a94c3831a922a"
+        }
... 120229 lines suppressed ...