You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/04/01 14:26:09 UTC

[camel-spring-boot] 01/03: CAMEL-17879: remove deprecated component camel-atomix

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit 1c1e36fc77f58f2ca1768fa03a403566a7709d7c
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Fri Apr 1 13:33:19 2022 +0200

    CAMEL-17879: remove deprecated component camel-atomix
---
 .../camel/springboot/catalog/components.properties |   6 -
 components-starter/camel-atomix-starter/pom.xml    |  49 --
 .../camel-atomix-starter/src/main/docs/atomix.json | 864 ---------------------
 .../AtomixMapComponentAutoConfiguration.java       |  79 --
 .../AtomixMapComponentConfiguration.java           | 287 -------
 .../springboot/AtomixMapComponentConverter.java    |  69 --
 .../AtomixMessagingComponentAutoConfiguration.java |  79 --
 .../AtomixMessagingComponentConfiguration.java     | 299 -------
 .../AtomixMessagingComponentConverter.java         |  69 --
 .../AtomixMultiMapComponentAutoConfiguration.java  |  79 --
 .../AtomixMultiMapComponentConfiguration.java      | 270 -------
 .../AtomixMultiMapComponentConverter.java          |  69 --
 .../AtomixQueueComponentAutoConfiguration.java     |  79 --
 .../AtomixQueueComponentConfiguration.java         | 263 -------
 .../springboot/AtomixQueueComponentConverter.java  |  69 --
 .../AtomixSetComponentAutoConfiguration.java       |  79 --
 .../AtomixSetComponentConfiguration.java           | 274 -------
 .../springboot/AtomixSetComponentConverter.java    |  69 --
 .../AtomixValueComponentAutoConfiguration.java     |  79 --
 .../AtomixValueComponentConfiguration.java         | 275 -------
 .../springboot/AtomixValueComponentConverter.java  |  69 --
 .../AtomixClusterServiceAutoConfiguration.java     |  98 ---
 .../AtomixClusterServiceConfiguration.java         | 178 -----
 .../springboot/StringToAddressConverter.java       |  29 -
 .../src/main/resources/META-INF/LICENSE.txt        | 203 -----
 .../src/main/resources/META-INF/NOTICE.txt         |  11 -
 .../src/main/resources/META-INF/spring.factories   |  54 --
 .../src/main/resources/META-INF/spring.provides    |  17 -
 components-starter/pom.xml                         |   1 -
 .../camel/itest/springboot/CamelAtomixTest.java    |  49 --
 tooling/camel-spring-boot-bom/pom.xml              |   5 -
 tooling/camel-spring-boot-dependencies/pom.xml     |  15 -
 32 files changed, 4135 deletions(-)

diff --git a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
index a3840c9..966d4a4 100644
--- a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
+++ b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
@@ -10,12 +10,6 @@ atlasmap
 atmos
 atmosphere-websocket
 atom
-atomix-map
-atomix-messaging
-atomix-multimap
-atomix-queue
-atomix-set
-atomix-value
 avro
 aws-secrets-manager
 aws2-athena
diff --git a/components-starter/camel-atomix-starter/pom.xml b/components-starter/camel-atomix-starter/pom.xml
deleted file mode 100644
index ab1f957..0000000
--- a/components-starter/camel-atomix-starter/pom.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
-
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.apache.camel.springboot</groupId>
-    <artifactId>components-starter</artifactId>
-    <version>3.17.0-SNAPSHOT</version>
-  </parent>
-  <artifactId>camel-atomix-starter</artifactId>
-  <packaging>jar</packaging>
-  <name>Camel SB Starters :: Atomix</name>
-  <description>Spring-Boot Starter for Camel Atomix support</description>
-  <dependencies>
-    <dependency>
-      <groupId>org.springframework.boot</groupId>
-      <artifactId>spring-boot-starter</artifactId>
-      <version>${spring-boot-version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.camel</groupId>
-      <artifactId>camel-atomix</artifactId>
-      <version>${camel-version}</version>
-    </dependency>
-    <!--START OF GENERATED CODE-->
-    <dependency>
-      <groupId>org.apache.camel.springboot</groupId>
-      <artifactId>camel-core-starter</artifactId>
-    </dependency>
-    <!--END OF GENERATED CODE-->
-  </dependencies>
-</project>
diff --git a/components-starter/camel-atomix-starter/src/main/docs/atomix.json b/components-starter/camel-atomix-starter/src/main/docs/atomix.json
deleted file mode 100644
index be49cda..0000000
--- a/components-starter/camel-atomix-starter/src/main/docs/atomix.json
+++ /dev/null
@@ -1,864 +0,0 @@
-{
-  "groups": [
-    {
-      "name": "camel.cluster.atomix",
-      "type": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map",
-      "type": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.customizer",
-      "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration",
-      "sourceMethod": "getCustomizer()"
-    },
-    {
-      "name": "camel.component.atomix-messaging",
-      "type": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.customizer",
-      "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration",
-      "sourceMethod": "getCustomizer()"
-    },
-    {
-      "name": "camel.component.atomix-multimap",
-      "type": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.customizer",
-      "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration",
-      "sourceMethod": "getCustomizer()"
-    },
-    {
-      "name": "camel.component.atomix-queue",
-      "type": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.customizer",
-      "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration",
-      "sourceMethod": "getCustomizer()"
-    },
-    {
-      "name": "camel.component.atomix-set",
-      "type": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.customizer",
-      "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration",
-      "sourceMethod": "getCustomizer()"
-    },
-    {
-      "name": "camel.component.atomix-value",
-      "type": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.customizer",
-      "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration",
-      "sourceMethod": "getCustomizer()"
-    }
-  ],
-  "properties": [
-    {
-      "name": "camel.cluster.atomix.address",
-      "type": "java.lang.String",
-      "description": "The address of the node - node only.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.cluster.atomix.attributes",
-      "type": "java.util.Map<java.lang.String,java.lang.Object>",
-      "description": "Custom service attributes.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.cluster.atomix.configuration-uri",
-      "type": "java.lang.String",
-      "description": "The Atomix configuration uri.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.cluster.atomix.enabled",
-      "type": "java.lang.Boolean",
-      "description": "Sets if the atomix cluster service should be enabled or not, default is false.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.cluster.atomix.ephemeral",
-      "type": "java.lang.Boolean",
-      "description": "Sets if the local member should join groups as PersistentMember or not (node only).",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.cluster.atomix.id",
-      "type": "java.lang.String",
-      "description": "The cluster id.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.cluster.atomix.mode",
-      "type": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration$Mode",
-      "description": "Sets the cluster mode.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.cluster.atomix.nodes",
-      "type": "java.util.Set<java.lang.String>",
-      "description": "The address of the nodes composing the cluster.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.cluster.atomix.order",
-      "type": "java.lang.Integer",
-      "description": "Service lookup order\/priority.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.cluster.atomix.storage-level",
-      "type": "io.atomix.copycat.server.storage.StorageLevel",
-      "description": "The storage mode - node only.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.cluster.atomix.storage-path",
-      "type": "java.lang.String",
-      "description": "The storage directory - node only.",
-      "sourceType": "org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.atomix",
-      "type": "io.atomix.Atomix",
-      "description": "The Atomix instance to use. The option is a io.atomix.Atomix type.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.autowired-enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration",
-      "defaultValue": true
-    },
-    {
-      "name": "camel.component.atomix-map.bridge-error-handler",
-      "type": "java.lang.Boolean",
-      "description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-map.configuration",
-      "type": "org.apache.camel.component.atomix.client.map.AtomixMapConfiguration",
-      "description": "The shared component configuration. The option is a org.apache.camel.component.atomix.client.map.AtomixMapConfiguration type.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.configuration-uri",
-      "type": "java.lang.String",
-      "description": "The path to the AtomixClient configuration",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.customizer.enabled",
-      "type": "java.lang.Boolean",
-      "sourceType": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
-    },
-    {
-      "name": "camel.component.atomix-map.default-action",
-      "type": "org.apache.camel.component.atomix.client.map.AtomixMap$Action",
-      "description": "The default action.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.default-resource-config",
-      "type": "java.util.Properties",
-      "description": "The cluster wide default resource configuration. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.default-resource-options",
-      "type": "java.util.Properties",
-      "description": "The local default resource options. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether to enable auto configuration of the atomix-map component. This is enabled by default.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.ephemeral",
-      "type": "java.lang.Boolean",
-      "description": "Sets if the local member should join groups as PersistentMember or not. If set to ephemeral the local member will receive an auto generated ID thus the local one is ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-map.key",
-      "type": "java.lang.Object",
-      "description": "The key to use if none is set in the header or to listen for events for a specific key. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.lazy-start-producer",
-      "type": "java.lang.Boolean",
-      "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the [...]
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-map.nodes",
-      "type": "java.util.List<io.atomix.catalyst.transport.Address>",
-      "description": "The nodes the AtomixClient should connect to",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.read-consistency",
-      "type": "io.atomix.resource.ReadConsistency",
-      "description": "The read consistency level.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.resource-configs",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Cluster wide resources configuration.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.resource-options",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Local resources configurations",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.result-header",
-      "type": "java.lang.String",
-      "description": "The header that wil carry the result.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-map.transport-class-name",
-      "type": "java.lang.String",
-      "description": "The class name (fqn) of the Atomix transport",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration",
-      "defaultValue": "io.atomix.catalyst.transport.netty.NettyTransport"
-    },
-    {
-      "name": "camel.component.atomix-map.ttl",
-      "type": "java.lang.Long",
-      "description": "The resource ttl. The option is a long type.",
-      "sourceType": "org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.atomix",
-      "type": "io.atomix.Atomix",
-      "description": "The Atomix instance to use. The option is a io.atomix.Atomix type.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.autowired-enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration",
-      "defaultValue": true
-    },
-    {
-      "name": "camel.component.atomix-messaging.bridge-error-handler",
-      "type": "java.lang.Boolean",
-      "description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-messaging.broadcast-type",
-      "type": "org.apache.camel.component.atomix.client.messaging.AtomixMessaging$BroadcastType",
-      "description": "The broadcast type.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.channel-name",
-      "type": "java.lang.String",
-      "description": "The messaging channel name",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.configuration",
-      "type": "org.apache.camel.component.atomix.client.messaging.AtomixMessagingConfiguration",
-      "description": "The shared component configuration. The option is a org.apache.camel.component.atomix.client.messaging.AtomixMessagingConfiguration type.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.configuration-uri",
-      "type": "java.lang.String",
-      "description": "The path to the AtomixClient configuration",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.customizer.enabled",
-      "type": "java.lang.Boolean",
-      "sourceType": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
-    },
-    {
-      "name": "camel.component.atomix-messaging.default-action",
-      "type": "org.apache.camel.component.atomix.client.messaging.AtomixMessaging$Action",
-      "description": "The default action.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.default-resource-config",
-      "type": "java.util.Properties",
-      "description": "The cluster wide default resource configuration. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.default-resource-options",
-      "type": "java.util.Properties",
-      "description": "The local default resource options. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether to enable auto configuration of the atomix-messaging component. This is enabled by default.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.ephemeral",
-      "type": "java.lang.Boolean",
-      "description": "Sets if the local member should join groups as PersistentMember or not. If set to ephemeral the local member will receive an auto generated ID thus the local one is ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-messaging.lazy-start-producer",
-      "type": "java.lang.Boolean",
-      "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the [...]
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-messaging.member-name",
-      "type": "java.lang.String",
-      "description": "The Atomix Group member name",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.nodes",
-      "type": "java.util.List<io.atomix.catalyst.transport.Address>",
-      "description": "The nodes the AtomixClient should connect to",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.read-consistency",
-      "type": "io.atomix.resource.ReadConsistency",
-      "description": "The read consistency level.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.resource-configs",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Cluster wide resources configuration.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.resource-options",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Local resources configurations",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.result-header",
-      "type": "java.lang.String",
-      "description": "The header that wil carry the result.",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-messaging.transport-class-name",
-      "type": "java.lang.String",
-      "description": "The class name (fqn) of the Atomix transport",
-      "sourceType": "org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConfiguration",
-      "defaultValue": "io.atomix.catalyst.transport.netty.NettyTransport"
-    },
-    {
-      "name": "camel.component.atomix-multimap.atomix",
-      "type": "io.atomix.Atomix",
-      "description": "The Atomix instance to use. The option is a io.atomix.Atomix type.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.autowired-enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration",
-      "defaultValue": true
-    },
-    {
-      "name": "camel.component.atomix-multimap.configuration",
-      "type": "org.apache.camel.component.atomix.client.multimap.AtomixMultiMapConfiguration",
-      "description": "The shared component configuration. The option is a org.apache.camel.component.atomix.client.multimap.AtomixMultiMapConfiguration type.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.configuration-uri",
-      "type": "java.lang.String",
-      "description": "The path to the AtomixClient configuration",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.customizer.enabled",
-      "type": "java.lang.Boolean",
-      "sourceType": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
-    },
-    {
-      "name": "camel.component.atomix-multimap.default-action",
-      "type": "org.apache.camel.component.atomix.client.multimap.AtomixMultiMap$Action",
-      "description": "The default action.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.default-resource-config",
-      "type": "java.util.Properties",
-      "description": "The cluster wide default resource configuration. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.default-resource-options",
-      "type": "java.util.Properties",
-      "description": "The local default resource options. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether to enable auto configuration of the atomix-multimap component. This is enabled by default.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.ephemeral",
-      "type": "java.lang.Boolean",
-      "description": "Sets if the local member should join groups as PersistentMember or not. If set to ephemeral the local member will receive an auto generated ID thus the local one is ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-multimap.key",
-      "type": "java.lang.Object",
-      "description": "The key to use if none is set in the header or to listen for events for a specific key. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.lazy-start-producer",
-      "type": "java.lang.Boolean",
-      "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the [...]
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-multimap.nodes",
-      "type": "java.util.List<io.atomix.catalyst.transport.Address>",
-      "description": "The nodes the AtomixClient should connect to",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.read-consistency",
-      "type": "io.atomix.resource.ReadConsistency",
-      "description": "The read consistency level.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.resource-configs",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Cluster wide resources configuration.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.resource-options",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Local resources configurations",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.result-header",
-      "type": "java.lang.String",
-      "description": "The header that wil carry the result.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-multimap.transport-class-name",
-      "type": "java.lang.String",
-      "description": "The class name (fqn) of the Atomix transport",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration",
-      "defaultValue": "io.atomix.catalyst.transport.netty.NettyTransport"
-    },
-    {
-      "name": "camel.component.atomix-multimap.ttl",
-      "type": "java.lang.Long",
-      "description": "The resource ttl. The option is a long type.",
-      "sourceType": "org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.atomix",
-      "type": "io.atomix.Atomix",
-      "description": "The Atomix instance to use. The option is a io.atomix.Atomix type.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.autowired-enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration",
-      "defaultValue": true
-    },
-    {
-      "name": "camel.component.atomix-queue.bridge-error-handler",
-      "type": "java.lang.Boolean",
-      "description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-queue.configuration",
-      "type": "org.apache.camel.component.atomix.client.queue.AtomixQueueConfiguration",
-      "description": "The shared component configuration. The option is a org.apache.camel.component.atomix.client.queue.AtomixQueueConfiguration type.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.configuration-uri",
-      "type": "java.lang.String",
-      "description": "The path to the AtomixClient configuration",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.customizer.enabled",
-      "type": "java.lang.Boolean",
-      "sourceType": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
-    },
-    {
-      "name": "camel.component.atomix-queue.default-action",
-      "type": "org.apache.camel.component.atomix.client.queue.AtomixQueue$Action",
-      "description": "The default action.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.default-resource-config",
-      "type": "java.util.Properties",
-      "description": "The cluster wide default resource configuration. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.default-resource-options",
-      "type": "java.util.Properties",
-      "description": "The local default resource options. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether to enable auto configuration of the atomix-queue component. This is enabled by default.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.ephemeral",
-      "type": "java.lang.Boolean",
-      "description": "Sets if the local member should join groups as PersistentMember or not. If set to ephemeral the local member will receive an auto generated ID thus the local one is ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-queue.lazy-start-producer",
-      "type": "java.lang.Boolean",
-      "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the [...]
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-queue.nodes",
-      "type": "java.util.List<io.atomix.catalyst.transport.Address>",
-      "description": "The nodes the AtomixClient should connect to",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.read-consistency",
-      "type": "io.atomix.resource.ReadConsistency",
-      "description": "The read consistency level.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.resource-configs",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Cluster wide resources configuration.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.resource-options",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Local resources configurations",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.result-header",
-      "type": "java.lang.String",
-      "description": "The header that wil carry the result.",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-queue.transport-class-name",
-      "type": "java.lang.String",
-      "description": "The class name (fqn) of the Atomix transport",
-      "sourceType": "org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConfiguration",
-      "defaultValue": "io.atomix.catalyst.transport.netty.NettyTransport"
-    },
-    {
-      "name": "camel.component.atomix-set.atomix",
-      "type": "io.atomix.Atomix",
-      "description": "The Atomix instance to use. The option is a io.atomix.Atomix type.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.autowired-enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration",
-      "defaultValue": true
-    },
-    {
-      "name": "camel.component.atomix-set.bridge-error-handler",
-      "type": "java.lang.Boolean",
-      "description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-set.configuration",
-      "type": "org.apache.camel.component.atomix.client.set.AtomixSetConfiguration",
-      "description": "The shared component configuration. The option is a org.apache.camel.component.atomix.client.set.AtomixSetConfiguration type.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.configuration-uri",
-      "type": "java.lang.String",
-      "description": "The path to the AtomixClient configuration",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.customizer.enabled",
-      "type": "java.lang.Boolean",
-      "sourceType": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
-    },
-    {
-      "name": "camel.component.atomix-set.default-action",
-      "type": "org.apache.camel.component.atomix.client.set.AtomixSet$Action",
-      "description": "The default action.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.default-resource-config",
-      "type": "java.util.Properties",
-      "description": "The cluster wide default resource configuration. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.default-resource-options",
-      "type": "java.util.Properties",
-      "description": "The local default resource options. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether to enable auto configuration of the atomix-set component. This is enabled by default.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.ephemeral",
-      "type": "java.lang.Boolean",
-      "description": "Sets if the local member should join groups as PersistentMember or not. If set to ephemeral the local member will receive an auto generated ID thus the local one is ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-set.lazy-start-producer",
-      "type": "java.lang.Boolean",
-      "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the [...]
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-set.nodes",
-      "type": "java.util.List<io.atomix.catalyst.transport.Address>",
-      "description": "The nodes the AtomixClient should connect to",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.read-consistency",
-      "type": "io.atomix.resource.ReadConsistency",
-      "description": "The read consistency level.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.resource-configs",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Cluster wide resources configuration.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.resource-options",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Local resources configurations",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.result-header",
-      "type": "java.lang.String",
-      "description": "The header that wil carry the result.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-set.transport-class-name",
-      "type": "java.lang.String",
-      "description": "The class name (fqn) of the Atomix transport",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration",
-      "defaultValue": "io.atomix.catalyst.transport.netty.NettyTransport"
-    },
-    {
-      "name": "camel.component.atomix-set.ttl",
-      "type": "java.lang.Long",
-      "description": "The resource ttl. The option is a long type.",
-      "sourceType": "org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.atomix",
-      "type": "io.atomix.Atomix",
-      "description": "The Atomix instance to use. The option is a io.atomix.Atomix type.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.autowired-enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration",
-      "defaultValue": true
-    },
-    {
-      "name": "camel.component.atomix-value.bridge-error-handler",
-      "type": "java.lang.Boolean",
-      "description": "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-value.configuration",
-      "type": "org.apache.camel.component.atomix.client.value.AtomixValueConfiguration",
-      "description": "The shared component configuration. The option is a org.apache.camel.component.atomix.client.value.AtomixValueConfiguration type.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.configuration-uri",
-      "type": "java.lang.String",
-      "description": "The path to the AtomixClient configuration",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.customizer.enabled",
-      "type": "java.lang.Boolean",
-      "sourceType": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
-    },
-    {
-      "name": "camel.component.atomix-value.default-action",
-      "type": "org.apache.camel.component.atomix.client.value.AtomixValue$Action",
-      "description": "The default action.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.default-resource-config",
-      "type": "java.util.Properties",
-      "description": "The cluster wide default resource configuration. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.default-resource-options",
-      "type": "java.util.Properties",
-      "description": "The local default resource options. The option is a java.util.Properties type.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.enabled",
-      "type": "java.lang.Boolean",
-      "description": "Whether to enable auto configuration of the atomix-value component. This is enabled by default.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.ephemeral",
-      "type": "java.lang.Boolean",
-      "description": "Sets if the local member should join groups as PersistentMember or not. If set to ephemeral the local member will receive an auto generated ID thus the local one is ignored.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-value.lazy-start-producer",
-      "type": "java.lang.Boolean",
-      "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the [...]
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration",
-      "defaultValue": false
-    },
-    {
-      "name": "camel.component.atomix-value.nodes",
-      "type": "java.util.List<io.atomix.catalyst.transport.Address>",
-      "description": "The nodes the AtomixClient should connect to",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.read-consistency",
-      "type": "io.atomix.resource.ReadConsistency",
-      "description": "The read consistency level.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.resource-configs",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Cluster wide resources configuration.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.resource-options",
-      "type": "java.util.Map<java.lang.String,java.util.Properties>",
-      "description": "Local resources configurations",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.result-header",
-      "type": "java.lang.String",
-      "description": "The header that wil carry the result.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    },
-    {
-      "name": "camel.component.atomix-value.transport-class-name",
-      "type": "java.lang.String",
-      "description": "The class name (fqn) of the Atomix transport",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration",
-      "defaultValue": "io.atomix.catalyst.transport.netty.NettyTransport"
-    },
-    {
-      "name": "camel.component.atomix-value.ttl",
-      "type": "java.lang.Long",
-      "description": "The resource ttl. The option is a long type.",
-      "sourceType": "org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConfiguration"
-    }
-  ],
-  "hints": []
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/map/springboot/AtomixMapComponentAutoConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/map/springboot/AtomixMapComponentAutoConfiguration.java
deleted file mode 100644
index 5779ebe..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/map/springboot/AtomixMapComponentAutoConfiguration.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.map.springboot;
-
-import javax.annotation.Generated;
-import org.apache.camel.CamelContext;
-import org.apache.camel.Component;
-import org.apache.camel.component.atomix.client.map.AtomixMapComponent;
-import org.apache.camel.spi.ComponentCustomizer;
-import org.apache.camel.spring.boot.CamelAutoConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationProperties;
-import org.apache.camel.spring.boot.util.CamelPropertiesHelper;
-import org.apache.camel.spring.boot.util.ConditionalOnCamelContextAndAutoConfigurationBeans;
-import org.apache.camel.spring.boot.util.ConditionalOnHierarchicalProperties;
-import org.apache.camel.spring.boot.util.HierarchicalPropertiesEvaluator;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.autoconfigure.AutoConfigureAfter;
-import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Conditional;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Lazy;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@Conditional(ConditionalOnCamelContextAndAutoConfigurationBeans.class)
-@EnableConfigurationProperties({ComponentConfigurationProperties.class,AtomixMapComponentConfiguration.class})
-@ConditionalOnHierarchicalProperties({"camel.component", "camel.component.atomix-map"})
-@AutoConfigureAfter({CamelAutoConfiguration.class, AtomixMapComponentConverter.class})
-public class AtomixMapComponentAutoConfiguration {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-    private final CamelContext camelContext;
-    @Autowired
-    private AtomixMapComponentConfiguration configuration;
-
-    public AtomixMapComponentAutoConfiguration(
-            org.apache.camel.CamelContext camelContext) {
-        this.camelContext = camelContext;
-    }
-
-    @Lazy
-    @Bean
-    public ComponentCustomizer configureAtomixMapComponent() {
-        return new ComponentCustomizer() {
-            @Override
-            public void configure(String name, Component target) {
-                CamelPropertiesHelper.copyProperties(camelContext, configuration, target);
-            }
-            @Override
-            public boolean isEnabled(String name, Component target) {
-                return HierarchicalPropertiesEvaluator.evaluate(
-                        applicationContext,
-                        "camel.component.customizer",
-                        "camel.component.atomix-map.customizer")
-                    && target instanceof AtomixMapComponent;
-            }
-        };
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/map/springboot/AtomixMapComponentConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/map/springboot/AtomixMapComponentConfiguration.java
deleted file mode 100644
index f286b5d..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/map/springboot/AtomixMapComponentConfiguration.java
+++ /dev/null
@@ -1,287 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.map.springboot;
-
-import java.util.List;
-import java.util.Map;
-import java.util.Properties;
-import javax.annotation.Generated;
-import io.atomix.Atomix;
-import io.atomix.catalyst.transport.Address;
-import io.atomix.resource.ReadConsistency;
-import org.apache.camel.component.atomix.client.map.AtomixMap.Action;
-import org.apache.camel.component.atomix.client.map.AtomixMapComponent;
-import org.apache.camel.component.atomix.client.map.AtomixMapConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
-import org.springframework.boot.context.properties.ConfigurationProperties;
-
-/**
- * Access Atomix's distributed map.
- * 
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@ConfigurationProperties(prefix = "camel.component.atomix-map")
-public class AtomixMapComponentConfiguration
-        extends
-            ComponentConfigurationPropertiesCommon {
-
-    /**
-     * Whether to enable auto configuration of the atomix-map component. This is
-     * enabled by default.
-     */
-    private Boolean enabled;
-    /**
-     * The Atomix instance to use. The option is a io.atomix.Atomix type.
-     */
-    private Atomix atomix;
-    /**
-     * The shared component configuration. The option is a
-     * org.apache.camel.component.atomix.client.map.AtomixMapConfiguration type.
-     */
-    private AtomixMapConfiguration configuration;
-    /**
-     * The path to the AtomixClient configuration
-     */
-    private String configurationUri;
-    /**
-     * The default action.
-     */
-    private Action defaultAction = Action.PUT;
-    /**
-     * The key to use if none is set in the header or to listen for events for a
-     * specific key. The option is a java.lang.Object type.
-     */
-    private Object key;
-    /**
-     * The nodes the AtomixClient should connect to
-     */
-    private List<Address> nodes;
-    /**
-     * The header that wil carry the result.
-     */
-    private String resultHeader;
-    /**
-     * The class name (fqn) of the Atomix transport
-     */
-    private String transportClassName = "io.atomix.catalyst.transport.netty.NettyTransport";
-    /**
-     * The resource ttl. The option is a long type.
-     */
-    private Long ttl;
-    /**
-     * Allows for bridging the consumer to the Camel routing Error Handler,
-     * which mean any exceptions occurred while the consumer is trying to pickup
-     * incoming messages, or the likes, will now be processed as a message and
-     * handled by the routing Error Handler. By default the consumer will use
-     * the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that
-     * will be logged at WARN or ERROR level and ignored.
-     */
-    private Boolean bridgeErrorHandler = false;
-    /**
-     * Whether the producer should be started lazy (on the first message). By
-     * starting lazy you can use this to allow CamelContext and routes to
-     * startup in situations where a producer may otherwise fail during starting
-     * and cause the route to fail being started. By deferring this startup to
-     * be lazy then the startup failure can be handled during routing messages
-     * via Camel's routing error handlers. Beware that when the first message is
-     * processed then creating and starting the producer may take a little time
-     * and prolong the total processing time of the processing.
-     */
-    private Boolean lazyStartProducer = false;
-    /**
-     * Whether autowiring is enabled. This is used for automatic autowiring
-     * options (the option must be marked as autowired) by looking up in the
-     * registry to find if there is a single instance of matching type, which
-     * then gets configured on the component. This can be used for automatic
-     * configuring JDBC data sources, JMS connection factories, AWS Clients,
-     * etc.
-     */
-    private Boolean autowiredEnabled = true;
-    /**
-     * The cluster wide default resource configuration. The option is a
-     * java.util.Properties type.
-     */
-    private Properties defaultResourceConfig;
-    /**
-     * The local default resource options. The option is a java.util.Properties
-     * type.
-     */
-    private Properties defaultResourceOptions;
-    /**
-     * Sets if the local member should join groups as PersistentMember or not.
-     * If set to ephemeral the local member will receive an auto generated ID
-     * thus the local one is ignored.
-     */
-    private Boolean ephemeral = false;
-    /**
-     * The read consistency level.
-     */
-    private ReadConsistency readConsistency;
-    /**
-     * Cluster wide resources configuration.
-     */
-    private Map<String, Properties> resourceConfigs;
-    /**
-     * Local resources configurations
-     */
-    private Map<String, Properties> resourceOptions;
-
-    public Atomix getAtomix() {
-        return atomix;
-    }
-
-    public void setAtomix(Atomix atomix) {
-        this.atomix = atomix;
-    }
-
-    public AtomixMapConfiguration getConfiguration() {
-        return configuration;
-    }
-
-    public void setConfiguration(AtomixMapConfiguration configuration) {
-        this.configuration = configuration;
-    }
-
-    public String getConfigurationUri() {
-        return configurationUri;
-    }
-
-    public void setConfigurationUri(String configurationUri) {
-        this.configurationUri = configurationUri;
-    }
-
-    public Action getDefaultAction() {
-        return defaultAction;
-    }
-
-    public void setDefaultAction(Action defaultAction) {
-        this.defaultAction = defaultAction;
-    }
-
-    public Object getKey() {
-        return key;
-    }
-
-    public void setKey(Object key) {
-        this.key = key;
-    }
-
-    public List<Address> getNodes() {
-        return nodes;
-    }
-
-    public void setNodes(List<Address> nodes) {
-        this.nodes = nodes;
-    }
-
-    public String getResultHeader() {
-        return resultHeader;
-    }
-
-    public void setResultHeader(String resultHeader) {
-        this.resultHeader = resultHeader;
-    }
-
-    public String getTransportClassName() {
-        return transportClassName;
-    }
-
-    public void setTransportClassName(String transportClassName) {
-        this.transportClassName = transportClassName;
-    }
-
-    public Long getTtl() {
-        return ttl;
-    }
-
-    public void setTtl(Long ttl) {
-        this.ttl = ttl;
-    }
-
-    public Boolean getBridgeErrorHandler() {
-        return bridgeErrorHandler;
-    }
-
-    public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
-        this.bridgeErrorHandler = bridgeErrorHandler;
-    }
-
-    public Boolean getLazyStartProducer() {
-        return lazyStartProducer;
-    }
-
-    public void setLazyStartProducer(Boolean lazyStartProducer) {
-        this.lazyStartProducer = lazyStartProducer;
-    }
-
-    public Boolean getAutowiredEnabled() {
-        return autowiredEnabled;
-    }
-
-    public void setAutowiredEnabled(Boolean autowiredEnabled) {
-        this.autowiredEnabled = autowiredEnabled;
-    }
-
-    public Properties getDefaultResourceConfig() {
-        return defaultResourceConfig;
-    }
-
-    public void setDefaultResourceConfig(Properties defaultResourceConfig) {
-        this.defaultResourceConfig = defaultResourceConfig;
-    }
-
-    public Properties getDefaultResourceOptions() {
-        return defaultResourceOptions;
-    }
-
-    public void setDefaultResourceOptions(Properties defaultResourceOptions) {
-        this.defaultResourceOptions = defaultResourceOptions;
-    }
-
-    public Boolean getEphemeral() {
-        return ephemeral;
-    }
-
-    public void setEphemeral(Boolean ephemeral) {
-        this.ephemeral = ephemeral;
-    }
-
-    public ReadConsistency getReadConsistency() {
-        return readConsistency;
-    }
-
-    public void setReadConsistency(ReadConsistency readConsistency) {
-        this.readConsistency = readConsistency;
-    }
-
-    public Map<String, Properties> getResourceConfigs() {
-        return resourceConfigs;
-    }
-
-    public void setResourceConfigs(Map<String, Properties> resourceConfigs) {
-        this.resourceConfigs = resourceConfigs;
-    }
-
-    public Map<String, Properties> getResourceOptions() {
-        return resourceOptions;
-    }
-
-    public void setResourceOptions(Map<String, Properties> resourceOptions) {
-        this.resourceOptions = resourceOptions;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/map/springboot/AtomixMapComponentConverter.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/map/springboot/AtomixMapComponentConverter.java
deleted file mode 100644
index 0ad46f3..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/map/springboot/AtomixMapComponentConverter.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.map.springboot;
-
-import java.util.LinkedHashSet;
-import java.util.Set;
-import javax.annotation.Generated;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.context.properties.ConfigurationPropertiesBinding;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.core.convert.TypeDescriptor;
-import org.springframework.core.convert.converter.GenericConverter;
-import org.springframework.stereotype.Component;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@ConfigurationPropertiesBinding
-@Component
-public class AtomixMapComponentConverter implements GenericConverter {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-
-    public Set<ConvertiblePair> getConvertibleTypes() {
-        Set<ConvertiblePair> answer = new LinkedHashSet<>();
-        answer.add(new ConvertiblePair(String.class, io.atomix.Atomix.class));
-        answer.add(new ConvertiblePair(String.class, org.apache.camel.component.atomix.client.map.AtomixMapConfiguration.class));
-        answer.add(new ConvertiblePair(String.class, java.util.Properties.class));
-        return answer;
-    }
-
-    public Object convert(
-            Object source,
-            TypeDescriptor sourceType,
-            TypeDescriptor targetType) {
-        if (source == null) {
-            return null;
-        }
-        String ref = source.toString();
-        if (!ref.startsWith("#")) {
-            return null;
-        }
-        ref = ref.startsWith("#bean:") ? ref.substring(6) : ref.substring(1);
-        switch (targetType.getName()) {
-            case "io.atomix.Atomix": return applicationContext.getBean(ref, io.atomix.Atomix.class);
-            case "org.apache.camel.component.atomix.client.map.AtomixMapConfiguration": return applicationContext.getBean(ref, org.apache.camel.component.atomix.client.map.AtomixMapConfiguration.class);
-            case "java.util.Properties": return applicationContext.getBean(ref, java.util.Properties.class);
-        }
-        return null;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/messaging/springboot/AtomixMessagingComponentAutoConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/messaging/springboot/AtomixMessagingComponentAutoConfiguration.java
deleted file mode 100644
index 5805227..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/messaging/springboot/AtomixMessagingComponentAutoConfiguration.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.messaging.springboot;
-
-import javax.annotation.Generated;
-import org.apache.camel.CamelContext;
-import org.apache.camel.Component;
-import org.apache.camel.component.atomix.client.messaging.AtomixMessagingComponent;
-import org.apache.camel.spi.ComponentCustomizer;
-import org.apache.camel.spring.boot.CamelAutoConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationProperties;
-import org.apache.camel.spring.boot.util.CamelPropertiesHelper;
-import org.apache.camel.spring.boot.util.ConditionalOnCamelContextAndAutoConfigurationBeans;
-import org.apache.camel.spring.boot.util.ConditionalOnHierarchicalProperties;
-import org.apache.camel.spring.boot.util.HierarchicalPropertiesEvaluator;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.autoconfigure.AutoConfigureAfter;
-import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Conditional;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Lazy;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@Conditional(ConditionalOnCamelContextAndAutoConfigurationBeans.class)
-@EnableConfigurationProperties({ComponentConfigurationProperties.class,AtomixMessagingComponentConfiguration.class})
-@ConditionalOnHierarchicalProperties({"camel.component", "camel.component.atomix-messaging"})
-@AutoConfigureAfter({CamelAutoConfiguration.class, AtomixMessagingComponentConverter.class})
-public class AtomixMessagingComponentAutoConfiguration {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-    private final CamelContext camelContext;
-    @Autowired
-    private AtomixMessagingComponentConfiguration configuration;
-
-    public AtomixMessagingComponentAutoConfiguration(
-            org.apache.camel.CamelContext camelContext) {
-        this.camelContext = camelContext;
-    }
-
-    @Lazy
-    @Bean
-    public ComponentCustomizer configureAtomixMessagingComponent() {
-        return new ComponentCustomizer() {
-            @Override
-            public void configure(String name, Component target) {
-                CamelPropertiesHelper.copyProperties(camelContext, configuration, target);
-            }
-            @Override
-            public boolean isEnabled(String name, Component target) {
-                return HierarchicalPropertiesEvaluator.evaluate(
-                        applicationContext,
-                        "camel.component.customizer",
-                        "camel.component.atomix-messaging.customizer")
-                    && target instanceof AtomixMessagingComponent;
-            }
-        };
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/messaging/springboot/AtomixMessagingComponentConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/messaging/springboot/AtomixMessagingComponentConfiguration.java
deleted file mode 100644
index 682188f..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/messaging/springboot/AtomixMessagingComponentConfiguration.java
+++ /dev/null
@@ -1,299 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.messaging.springboot;
-
-import java.util.List;
-import java.util.Map;
-import java.util.Properties;
-import javax.annotation.Generated;
-import io.atomix.Atomix;
-import io.atomix.catalyst.transport.Address;
-import io.atomix.resource.ReadConsistency;
-import org.apache.camel.component.atomix.client.messaging.AtomixMessaging.Action;
-import org.apache.camel.component.atomix.client.messaging.AtomixMessaging.BroadcastType;
-import org.apache.camel.component.atomix.client.messaging.AtomixMessagingComponent;
-import org.apache.camel.component.atomix.client.messaging.AtomixMessagingConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
-import org.springframework.boot.context.properties.ConfigurationProperties;
-
-/**
- * Access Atomix's group messaging.
- * 
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@ConfigurationProperties(prefix = "camel.component.atomix-messaging")
-public class AtomixMessagingComponentConfiguration
-        extends
-            ComponentConfigurationPropertiesCommon {
-
-    /**
-     * Whether to enable auto configuration of the atomix-messaging component.
-     * This is enabled by default.
-     */
-    private Boolean enabled;
-    /**
-     * The Atomix instance to use. The option is a io.atomix.Atomix type.
-     */
-    private Atomix atomix;
-    /**
-     * The broadcast type.
-     */
-    private BroadcastType broadcastType = BroadcastType.ALL;
-    /**
-     * The messaging channel name
-     */
-    private String channelName;
-    /**
-     * The shared component configuration. The option is a
-     * org.apache.camel.component.atomix.client.messaging.AtomixMessagingConfiguration type.
-     */
-    private AtomixMessagingConfiguration configuration;
-    /**
-     * The path to the AtomixClient configuration
-     */
-    private String configurationUri;
-    /**
-     * The default action.
-     */
-    private Action defaultAction = Action.DIRECT;
-    /**
-     * The Atomix Group member name
-     */
-    private String memberName;
-    /**
-     * The nodes the AtomixClient should connect to
-     */
-    private List<Address> nodes;
-    /**
-     * The header that wil carry the result.
-     */
-    private String resultHeader;
-    /**
-     * The class name (fqn) of the Atomix transport
-     */
-    private String transportClassName = "io.atomix.catalyst.transport.netty.NettyTransport";
-    /**
-     * Allows for bridging the consumer to the Camel routing Error Handler,
-     * which mean any exceptions occurred while the consumer is trying to pickup
-     * incoming messages, or the likes, will now be processed as a message and
-     * handled by the routing Error Handler. By default the consumer will use
-     * the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that
-     * will be logged at WARN or ERROR level and ignored.
-     */
-    private Boolean bridgeErrorHandler = false;
-    /**
-     * Whether the producer should be started lazy (on the first message). By
-     * starting lazy you can use this to allow CamelContext and routes to
-     * startup in situations where a producer may otherwise fail during starting
-     * and cause the route to fail being started. By deferring this startup to
-     * be lazy then the startup failure can be handled during routing messages
-     * via Camel's routing error handlers. Beware that when the first message is
-     * processed then creating and starting the producer may take a little time
-     * and prolong the total processing time of the processing.
-     */
-    private Boolean lazyStartProducer = false;
-    /**
-     * Whether autowiring is enabled. This is used for automatic autowiring
-     * options (the option must be marked as autowired) by looking up in the
-     * registry to find if there is a single instance of matching type, which
-     * then gets configured on the component. This can be used for automatic
-     * configuring JDBC data sources, JMS connection factories, AWS Clients,
-     * etc.
-     */
-    private Boolean autowiredEnabled = true;
-    /**
-     * The cluster wide default resource configuration. The option is a
-     * java.util.Properties type.
-     */
-    private Properties defaultResourceConfig;
-    /**
-     * The local default resource options. The option is a java.util.Properties
-     * type.
-     */
-    private Properties defaultResourceOptions;
-    /**
-     * Sets if the local member should join groups as PersistentMember or not.
-     * If set to ephemeral the local member will receive an auto generated ID
-     * thus the local one is ignored.
-     */
-    private Boolean ephemeral = false;
-    /**
-     * The read consistency level.
-     */
-    private ReadConsistency readConsistency;
-    /**
-     * Cluster wide resources configuration.
-     */
-    private Map<String, Properties> resourceConfigs;
-    /**
-     * Local resources configurations
-     */
-    private Map<String, Properties> resourceOptions;
-
-    public Atomix getAtomix() {
-        return atomix;
-    }
-
-    public void setAtomix(Atomix atomix) {
-        this.atomix = atomix;
-    }
-
-    public BroadcastType getBroadcastType() {
-        return broadcastType;
-    }
-
-    public void setBroadcastType(BroadcastType broadcastType) {
-        this.broadcastType = broadcastType;
-    }
-
-    public String getChannelName() {
-        return channelName;
-    }
-
-    public void setChannelName(String channelName) {
-        this.channelName = channelName;
-    }
-
-    public AtomixMessagingConfiguration getConfiguration() {
-        return configuration;
-    }
-
-    public void setConfiguration(AtomixMessagingConfiguration configuration) {
-        this.configuration = configuration;
-    }
-
-    public String getConfigurationUri() {
-        return configurationUri;
-    }
-
-    public void setConfigurationUri(String configurationUri) {
-        this.configurationUri = configurationUri;
-    }
-
-    public Action getDefaultAction() {
-        return defaultAction;
-    }
-
-    public void setDefaultAction(Action defaultAction) {
-        this.defaultAction = defaultAction;
-    }
-
-    public String getMemberName() {
-        return memberName;
-    }
-
-    public void setMemberName(String memberName) {
-        this.memberName = memberName;
-    }
-
-    public List<Address> getNodes() {
-        return nodes;
-    }
-
-    public void setNodes(List<Address> nodes) {
-        this.nodes = nodes;
-    }
-
-    public String getResultHeader() {
-        return resultHeader;
-    }
-
-    public void setResultHeader(String resultHeader) {
-        this.resultHeader = resultHeader;
-    }
-
-    public String getTransportClassName() {
-        return transportClassName;
-    }
-
-    public void setTransportClassName(String transportClassName) {
-        this.transportClassName = transportClassName;
-    }
-
-    public Boolean getBridgeErrorHandler() {
-        return bridgeErrorHandler;
-    }
-
-    public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
-        this.bridgeErrorHandler = bridgeErrorHandler;
-    }
-
-    public Boolean getLazyStartProducer() {
-        return lazyStartProducer;
-    }
-
-    public void setLazyStartProducer(Boolean lazyStartProducer) {
-        this.lazyStartProducer = lazyStartProducer;
-    }
-
-    public Boolean getAutowiredEnabled() {
-        return autowiredEnabled;
-    }
-
-    public void setAutowiredEnabled(Boolean autowiredEnabled) {
-        this.autowiredEnabled = autowiredEnabled;
-    }
-
-    public Properties getDefaultResourceConfig() {
-        return defaultResourceConfig;
-    }
-
-    public void setDefaultResourceConfig(Properties defaultResourceConfig) {
-        this.defaultResourceConfig = defaultResourceConfig;
-    }
-
-    public Properties getDefaultResourceOptions() {
-        return defaultResourceOptions;
-    }
-
-    public void setDefaultResourceOptions(Properties defaultResourceOptions) {
-        this.defaultResourceOptions = defaultResourceOptions;
-    }
-
-    public Boolean getEphemeral() {
-        return ephemeral;
-    }
-
-    public void setEphemeral(Boolean ephemeral) {
-        this.ephemeral = ephemeral;
-    }
-
-    public ReadConsistency getReadConsistency() {
-        return readConsistency;
-    }
-
-    public void setReadConsistency(ReadConsistency readConsistency) {
-        this.readConsistency = readConsistency;
-    }
-
-    public Map<String, Properties> getResourceConfigs() {
-        return resourceConfigs;
-    }
-
-    public void setResourceConfigs(Map<String, Properties> resourceConfigs) {
-        this.resourceConfigs = resourceConfigs;
-    }
-
-    public Map<String, Properties> getResourceOptions() {
-        return resourceOptions;
-    }
-
-    public void setResourceOptions(Map<String, Properties> resourceOptions) {
-        this.resourceOptions = resourceOptions;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/messaging/springboot/AtomixMessagingComponentConverter.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/messaging/springboot/AtomixMessagingComponentConverter.java
deleted file mode 100644
index 528c3ef..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/messaging/springboot/AtomixMessagingComponentConverter.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.messaging.springboot;
-
-import java.util.LinkedHashSet;
-import java.util.Set;
-import javax.annotation.Generated;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.context.properties.ConfigurationPropertiesBinding;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.core.convert.TypeDescriptor;
-import org.springframework.core.convert.converter.GenericConverter;
-import org.springframework.stereotype.Component;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@ConfigurationPropertiesBinding
-@Component
-public class AtomixMessagingComponentConverter implements GenericConverter {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-
-    public Set<ConvertiblePair> getConvertibleTypes() {
-        Set<ConvertiblePair> answer = new LinkedHashSet<>();
-        answer.add(new ConvertiblePair(String.class, io.atomix.Atomix.class));
-        answer.add(new ConvertiblePair(String.class, org.apache.camel.component.atomix.client.messaging.AtomixMessagingConfiguration.class));
-        answer.add(new ConvertiblePair(String.class, java.util.Properties.class));
-        return answer;
-    }
-
-    public Object convert(
-            Object source,
-            TypeDescriptor sourceType,
-            TypeDescriptor targetType) {
-        if (source == null) {
-            return null;
-        }
-        String ref = source.toString();
-        if (!ref.startsWith("#")) {
-            return null;
-        }
-        ref = ref.startsWith("#bean:") ? ref.substring(6) : ref.substring(1);
-        switch (targetType.getName()) {
-            case "io.atomix.Atomix": return applicationContext.getBean(ref, io.atomix.Atomix.class);
-            case "org.apache.camel.component.atomix.client.messaging.AtomixMessagingConfiguration": return applicationContext.getBean(ref, org.apache.camel.component.atomix.client.messaging.AtomixMessagingConfiguration.class);
-            case "java.util.Properties": return applicationContext.getBean(ref, java.util.Properties.class);
-        }
-        return null;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/multimap/springboot/AtomixMultiMapComponentAutoConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/multimap/springboot/AtomixMultiMapComponentAutoConfiguration.java
deleted file mode 100644
index 7c671b9..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/multimap/springboot/AtomixMultiMapComponentAutoConfiguration.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.multimap.springboot;
-
-import javax.annotation.Generated;
-import org.apache.camel.CamelContext;
-import org.apache.camel.Component;
-import org.apache.camel.component.atomix.client.multimap.AtomixMultiMapComponent;
-import org.apache.camel.spi.ComponentCustomizer;
-import org.apache.camel.spring.boot.CamelAutoConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationProperties;
-import org.apache.camel.spring.boot.util.CamelPropertiesHelper;
-import org.apache.camel.spring.boot.util.ConditionalOnCamelContextAndAutoConfigurationBeans;
-import org.apache.camel.spring.boot.util.ConditionalOnHierarchicalProperties;
-import org.apache.camel.spring.boot.util.HierarchicalPropertiesEvaluator;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.autoconfigure.AutoConfigureAfter;
-import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Conditional;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Lazy;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@Conditional(ConditionalOnCamelContextAndAutoConfigurationBeans.class)
-@EnableConfigurationProperties({ComponentConfigurationProperties.class,AtomixMultiMapComponentConfiguration.class})
-@ConditionalOnHierarchicalProperties({"camel.component", "camel.component.atomix-multimap"})
-@AutoConfigureAfter({CamelAutoConfiguration.class, AtomixMultiMapComponentConverter.class})
-public class AtomixMultiMapComponentAutoConfiguration {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-    private final CamelContext camelContext;
-    @Autowired
-    private AtomixMultiMapComponentConfiguration configuration;
-
-    public AtomixMultiMapComponentAutoConfiguration(
-            org.apache.camel.CamelContext camelContext) {
-        this.camelContext = camelContext;
-    }
-
-    @Lazy
-    @Bean
-    public ComponentCustomizer configureAtomixMultiMapComponent() {
-        return new ComponentCustomizer() {
-            @Override
-            public void configure(String name, Component target) {
-                CamelPropertiesHelper.copyProperties(camelContext, configuration, target);
-            }
-            @Override
-            public boolean isEnabled(String name, Component target) {
-                return HierarchicalPropertiesEvaluator.evaluate(
-                        applicationContext,
-                        "camel.component.customizer",
-                        "camel.component.atomix-multimap.customizer")
-                    && target instanceof AtomixMultiMapComponent;
-            }
-        };
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/multimap/springboot/AtomixMultiMapComponentConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/multimap/springboot/AtomixMultiMapComponentConfiguration.java
deleted file mode 100644
index b8f42bc..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/multimap/springboot/AtomixMultiMapComponentConfiguration.java
+++ /dev/null
@@ -1,270 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.multimap.springboot;
-
-import java.util.List;
-import java.util.Map;
-import java.util.Properties;
-import javax.annotation.Generated;
-import io.atomix.Atomix;
-import io.atomix.catalyst.transport.Address;
-import io.atomix.resource.ReadConsistency;
-import org.apache.camel.component.atomix.client.multimap.AtomixMultiMap.Action;
-import org.apache.camel.component.atomix.client.multimap.AtomixMultiMapComponent;
-import org.apache.camel.component.atomix.client.multimap.AtomixMultiMapConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
-import org.springframework.boot.context.properties.ConfigurationProperties;
-
-/**
- * Access Atomix's distributed multi map.
- * 
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@ConfigurationProperties(prefix = "camel.component.atomix-multimap")
-public class AtomixMultiMapComponentConfiguration
-        extends
-            ComponentConfigurationPropertiesCommon {
-
-    /**
-     * Whether to enable auto configuration of the atomix-multimap component.
-     * This is enabled by default.
-     */
-    private Boolean enabled;
-    /**
-     * The Atomix instance to use. The option is a io.atomix.Atomix type.
-     */
-    private Atomix atomix;
-    /**
-     * The shared component configuration. The option is a
-     * org.apache.camel.component.atomix.client.multimap.AtomixMultiMapConfiguration type.
-     */
-    private AtomixMultiMapConfiguration configuration;
-    /**
-     * The path to the AtomixClient configuration
-     */
-    private String configurationUri;
-    /**
-     * The default action.
-     */
-    private Action defaultAction = Action.PUT;
-    /**
-     * The key to use if none is set in the header or to listen for events for a
-     * specific key. The option is a java.lang.Object type.
-     */
-    private Object key;
-    /**
-     * Whether the producer should be started lazy (on the first message). By
-     * starting lazy you can use this to allow CamelContext and routes to
-     * startup in situations where a producer may otherwise fail during starting
-     * and cause the route to fail being started. By deferring this startup to
-     * be lazy then the startup failure can be handled during routing messages
-     * via Camel's routing error handlers. Beware that when the first message is
-     * processed then creating and starting the producer may take a little time
-     * and prolong the total processing time of the processing.
-     */
-    private Boolean lazyStartProducer = false;
-    /**
-     * The nodes the AtomixClient should connect to
-     */
-    private List<Address> nodes;
-    /**
-     * The header that wil carry the result.
-     */
-    private String resultHeader;
-    /**
-     * The class name (fqn) of the Atomix transport
-     */
-    private String transportClassName = "io.atomix.catalyst.transport.netty.NettyTransport";
-    /**
-     * The resource ttl. The option is a long type.
-     */
-    private Long ttl;
-    /**
-     * Whether autowiring is enabled. This is used for automatic autowiring
-     * options (the option must be marked as autowired) by looking up in the
-     * registry to find if there is a single instance of matching type, which
-     * then gets configured on the component. This can be used for automatic
-     * configuring JDBC data sources, JMS connection factories, AWS Clients,
-     * etc.
-     */
-    private Boolean autowiredEnabled = true;
-    /**
-     * The cluster wide default resource configuration. The option is a
-     * java.util.Properties type.
-     */
-    private Properties defaultResourceConfig;
-    /**
-     * The local default resource options. The option is a java.util.Properties
-     * type.
-     */
-    private Properties defaultResourceOptions;
-    /**
-     * Sets if the local member should join groups as PersistentMember or not.
-     * If set to ephemeral the local member will receive an auto generated ID
-     * thus the local one is ignored.
-     */
-    private Boolean ephemeral = false;
-    /**
-     * The read consistency level.
-     */
-    private ReadConsistency readConsistency;
-    /**
-     * Cluster wide resources configuration.
-     */
-    private Map<String, Properties> resourceConfigs;
-    /**
-     * Local resources configurations
-     */
-    private Map<String, Properties> resourceOptions;
-
-    public Atomix getAtomix() {
-        return atomix;
-    }
-
-    public void setAtomix(Atomix atomix) {
-        this.atomix = atomix;
-    }
-
-    public AtomixMultiMapConfiguration getConfiguration() {
-        return configuration;
-    }
-
-    public void setConfiguration(AtomixMultiMapConfiguration configuration) {
-        this.configuration = configuration;
-    }
-
-    public String getConfigurationUri() {
-        return configurationUri;
-    }
-
-    public void setConfigurationUri(String configurationUri) {
-        this.configurationUri = configurationUri;
-    }
-
-    public Action getDefaultAction() {
-        return defaultAction;
-    }
-
-    public void setDefaultAction(Action defaultAction) {
-        this.defaultAction = defaultAction;
-    }
-
-    public Object getKey() {
-        return key;
-    }
-
-    public void setKey(Object key) {
-        this.key = key;
-    }
-
-    public Boolean getLazyStartProducer() {
-        return lazyStartProducer;
-    }
-
-    public void setLazyStartProducer(Boolean lazyStartProducer) {
-        this.lazyStartProducer = lazyStartProducer;
-    }
-
-    public List<Address> getNodes() {
-        return nodes;
-    }
-
-    public void setNodes(List<Address> nodes) {
-        this.nodes = nodes;
-    }
-
-    public String getResultHeader() {
-        return resultHeader;
-    }
-
-    public void setResultHeader(String resultHeader) {
-        this.resultHeader = resultHeader;
-    }
-
-    public String getTransportClassName() {
-        return transportClassName;
-    }
-
-    public void setTransportClassName(String transportClassName) {
-        this.transportClassName = transportClassName;
-    }
-
-    public Long getTtl() {
-        return ttl;
-    }
-
-    public void setTtl(Long ttl) {
-        this.ttl = ttl;
-    }
-
-    public Boolean getAutowiredEnabled() {
-        return autowiredEnabled;
-    }
-
-    public void setAutowiredEnabled(Boolean autowiredEnabled) {
-        this.autowiredEnabled = autowiredEnabled;
-    }
-
-    public Properties getDefaultResourceConfig() {
-        return defaultResourceConfig;
-    }
-
-    public void setDefaultResourceConfig(Properties defaultResourceConfig) {
-        this.defaultResourceConfig = defaultResourceConfig;
-    }
-
-    public Properties getDefaultResourceOptions() {
-        return defaultResourceOptions;
-    }
-
-    public void setDefaultResourceOptions(Properties defaultResourceOptions) {
-        this.defaultResourceOptions = defaultResourceOptions;
-    }
-
-    public Boolean getEphemeral() {
-        return ephemeral;
-    }
-
-    public void setEphemeral(Boolean ephemeral) {
-        this.ephemeral = ephemeral;
-    }
-
-    public ReadConsistency getReadConsistency() {
-        return readConsistency;
-    }
-
-    public void setReadConsistency(ReadConsistency readConsistency) {
-        this.readConsistency = readConsistency;
-    }
-
-    public Map<String, Properties> getResourceConfigs() {
-        return resourceConfigs;
-    }
-
-    public void setResourceConfigs(Map<String, Properties> resourceConfigs) {
-        this.resourceConfigs = resourceConfigs;
-    }
-
-    public Map<String, Properties> getResourceOptions() {
-        return resourceOptions;
-    }
-
-    public void setResourceOptions(Map<String, Properties> resourceOptions) {
-        this.resourceOptions = resourceOptions;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/multimap/springboot/AtomixMultiMapComponentConverter.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/multimap/springboot/AtomixMultiMapComponentConverter.java
deleted file mode 100644
index 28dcc01..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/multimap/springboot/AtomixMultiMapComponentConverter.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.multimap.springboot;
-
-import java.util.LinkedHashSet;
-import java.util.Set;
-import javax.annotation.Generated;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.context.properties.ConfigurationPropertiesBinding;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.core.convert.TypeDescriptor;
-import org.springframework.core.convert.converter.GenericConverter;
-import org.springframework.stereotype.Component;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@ConfigurationPropertiesBinding
-@Component
-public class AtomixMultiMapComponentConverter implements GenericConverter {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-
-    public Set<ConvertiblePair> getConvertibleTypes() {
-        Set<ConvertiblePair> answer = new LinkedHashSet<>();
-        answer.add(new ConvertiblePair(String.class, io.atomix.Atomix.class));
-        answer.add(new ConvertiblePair(String.class, org.apache.camel.component.atomix.client.multimap.AtomixMultiMapConfiguration.class));
-        answer.add(new ConvertiblePair(String.class, java.util.Properties.class));
-        return answer;
-    }
-
-    public Object convert(
-            Object source,
-            TypeDescriptor sourceType,
-            TypeDescriptor targetType) {
-        if (source == null) {
-            return null;
-        }
-        String ref = source.toString();
-        if (!ref.startsWith("#")) {
-            return null;
-        }
-        ref = ref.startsWith("#bean:") ? ref.substring(6) : ref.substring(1);
-        switch (targetType.getName()) {
-            case "io.atomix.Atomix": return applicationContext.getBean(ref, io.atomix.Atomix.class);
-            case "org.apache.camel.component.atomix.client.multimap.AtomixMultiMapConfiguration": return applicationContext.getBean(ref, org.apache.camel.component.atomix.client.multimap.AtomixMultiMapConfiguration.class);
-            case "java.util.Properties": return applicationContext.getBean(ref, java.util.Properties.class);
-        }
-        return null;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/queue/springboot/AtomixQueueComponentAutoConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/queue/springboot/AtomixQueueComponentAutoConfiguration.java
deleted file mode 100644
index 7ad1067..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/queue/springboot/AtomixQueueComponentAutoConfiguration.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.queue.springboot;
-
-import javax.annotation.Generated;
-import org.apache.camel.CamelContext;
-import org.apache.camel.Component;
-import org.apache.camel.component.atomix.client.queue.AtomixQueueComponent;
-import org.apache.camel.spi.ComponentCustomizer;
-import org.apache.camel.spring.boot.CamelAutoConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationProperties;
-import org.apache.camel.spring.boot.util.CamelPropertiesHelper;
-import org.apache.camel.spring.boot.util.ConditionalOnCamelContextAndAutoConfigurationBeans;
-import org.apache.camel.spring.boot.util.ConditionalOnHierarchicalProperties;
-import org.apache.camel.spring.boot.util.HierarchicalPropertiesEvaluator;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.autoconfigure.AutoConfigureAfter;
-import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Conditional;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Lazy;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@Conditional(ConditionalOnCamelContextAndAutoConfigurationBeans.class)
-@EnableConfigurationProperties({ComponentConfigurationProperties.class,AtomixQueueComponentConfiguration.class})
-@ConditionalOnHierarchicalProperties({"camel.component", "camel.component.atomix-queue"})
-@AutoConfigureAfter({CamelAutoConfiguration.class, AtomixQueueComponentConverter.class})
-public class AtomixQueueComponentAutoConfiguration {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-    private final CamelContext camelContext;
-    @Autowired
-    private AtomixQueueComponentConfiguration configuration;
-
-    public AtomixQueueComponentAutoConfiguration(
-            org.apache.camel.CamelContext camelContext) {
-        this.camelContext = camelContext;
-    }
-
-    @Lazy
-    @Bean
-    public ComponentCustomizer configureAtomixQueueComponent() {
-        return new ComponentCustomizer() {
-            @Override
-            public void configure(String name, Component target) {
-                CamelPropertiesHelper.copyProperties(camelContext, configuration, target);
-            }
-            @Override
-            public boolean isEnabled(String name, Component target) {
-                return HierarchicalPropertiesEvaluator.evaluate(
-                        applicationContext,
-                        "camel.component.customizer",
-                        "camel.component.atomix-queue.customizer")
-                    && target instanceof AtomixQueueComponent;
-            }
-        };
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/queue/springboot/AtomixQueueComponentConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/queue/springboot/AtomixQueueComponentConfiguration.java
deleted file mode 100644
index f94b2f5..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/queue/springboot/AtomixQueueComponentConfiguration.java
+++ /dev/null
@@ -1,263 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.queue.springboot;
-
-import java.util.List;
-import java.util.Map;
-import java.util.Properties;
-import javax.annotation.Generated;
-import io.atomix.Atomix;
-import io.atomix.catalyst.transport.Address;
-import io.atomix.resource.ReadConsistency;
-import org.apache.camel.component.atomix.client.queue.AtomixQueue.Action;
-import org.apache.camel.component.atomix.client.queue.AtomixQueueComponent;
-import org.apache.camel.component.atomix.client.queue.AtomixQueueConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
-import org.springframework.boot.context.properties.ConfigurationProperties;
-
-/**
- * Access Atomix's distributed queue.
- * 
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@ConfigurationProperties(prefix = "camel.component.atomix-queue")
-public class AtomixQueueComponentConfiguration
-        extends
-            ComponentConfigurationPropertiesCommon {
-
-    /**
-     * Whether to enable auto configuration of the atomix-queue component. This
-     * is enabled by default.
-     */
-    private Boolean enabled;
-    /**
-     * The Atomix instance to use. The option is a io.atomix.Atomix type.
-     */
-    private Atomix atomix;
-    /**
-     * The shared component configuration. The option is a
-     * org.apache.camel.component.atomix.client.queue.AtomixQueueConfiguration
-     * type.
-     */
-    private AtomixQueueConfiguration configuration;
-    /**
-     * The path to the AtomixClient configuration
-     */
-    private String configurationUri;
-    /**
-     * The default action.
-     */
-    private Action defaultAction = Action.ADD;
-    /**
-     * The nodes the AtomixClient should connect to
-     */
-    private List<Address> nodes;
-    /**
-     * The header that wil carry the result.
-     */
-    private String resultHeader;
-    /**
-     * The class name (fqn) of the Atomix transport
-     */
-    private String transportClassName = "io.atomix.catalyst.transport.netty.NettyTransport";
-    /**
-     * Allows for bridging the consumer to the Camel routing Error Handler,
-     * which mean any exceptions occurred while the consumer is trying to pickup
-     * incoming messages, or the likes, will now be processed as a message and
-     * handled by the routing Error Handler. By default the consumer will use
-     * the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that
-     * will be logged at WARN or ERROR level and ignored.
-     */
-    private Boolean bridgeErrorHandler = false;
-    /**
-     * Whether the producer should be started lazy (on the first message). By
-     * starting lazy you can use this to allow CamelContext and routes to
-     * startup in situations where a producer may otherwise fail during starting
-     * and cause the route to fail being started. By deferring this startup to
-     * be lazy then the startup failure can be handled during routing messages
-     * via Camel's routing error handlers. Beware that when the first message is
-     * processed then creating and starting the producer may take a little time
-     * and prolong the total processing time of the processing.
-     */
-    private Boolean lazyStartProducer = false;
-    /**
-     * Whether autowiring is enabled. This is used for automatic autowiring
-     * options (the option must be marked as autowired) by looking up in the
-     * registry to find if there is a single instance of matching type, which
-     * then gets configured on the component. This can be used for automatic
-     * configuring JDBC data sources, JMS connection factories, AWS Clients,
-     * etc.
-     */
-    private Boolean autowiredEnabled = true;
-    /**
-     * The cluster wide default resource configuration. The option is a
-     * java.util.Properties type.
-     */
-    private Properties defaultResourceConfig;
-    /**
-     * The local default resource options. The option is a java.util.Properties
-     * type.
-     */
-    private Properties defaultResourceOptions;
-    /**
-     * Sets if the local member should join groups as PersistentMember or not.
-     * If set to ephemeral the local member will receive an auto generated ID
-     * thus the local one is ignored.
-     */
-    private Boolean ephemeral = false;
-    /**
-     * The read consistency level.
-     */
-    private ReadConsistency readConsistency;
-    /**
-     * Cluster wide resources configuration.
-     */
-    private Map<String, Properties> resourceConfigs;
-    /**
-     * Local resources configurations
-     */
-    private Map<String, Properties> resourceOptions;
-
-    public Atomix getAtomix() {
-        return atomix;
-    }
-
-    public void setAtomix(Atomix atomix) {
-        this.atomix = atomix;
-    }
-
-    public AtomixQueueConfiguration getConfiguration() {
-        return configuration;
-    }
-
-    public void setConfiguration(AtomixQueueConfiguration configuration) {
-        this.configuration = configuration;
-    }
-
-    public String getConfigurationUri() {
-        return configurationUri;
-    }
-
-    public void setConfigurationUri(String configurationUri) {
-        this.configurationUri = configurationUri;
-    }
-
-    public Action getDefaultAction() {
-        return defaultAction;
-    }
-
-    public void setDefaultAction(Action defaultAction) {
-        this.defaultAction = defaultAction;
-    }
-
-    public List<Address> getNodes() {
-        return nodes;
-    }
-
-    public void setNodes(List<Address> nodes) {
-        this.nodes = nodes;
-    }
-
-    public String getResultHeader() {
-        return resultHeader;
-    }
-
-    public void setResultHeader(String resultHeader) {
-        this.resultHeader = resultHeader;
-    }
-
-    public String getTransportClassName() {
-        return transportClassName;
-    }
-
-    public void setTransportClassName(String transportClassName) {
-        this.transportClassName = transportClassName;
-    }
-
-    public Boolean getBridgeErrorHandler() {
-        return bridgeErrorHandler;
-    }
-
-    public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
-        this.bridgeErrorHandler = bridgeErrorHandler;
-    }
-
-    public Boolean getLazyStartProducer() {
-        return lazyStartProducer;
-    }
-
-    public void setLazyStartProducer(Boolean lazyStartProducer) {
-        this.lazyStartProducer = lazyStartProducer;
-    }
-
-    public Boolean getAutowiredEnabled() {
-        return autowiredEnabled;
-    }
-
-    public void setAutowiredEnabled(Boolean autowiredEnabled) {
-        this.autowiredEnabled = autowiredEnabled;
-    }
-
-    public Properties getDefaultResourceConfig() {
-        return defaultResourceConfig;
-    }
-
-    public void setDefaultResourceConfig(Properties defaultResourceConfig) {
-        this.defaultResourceConfig = defaultResourceConfig;
-    }
-
-    public Properties getDefaultResourceOptions() {
-        return defaultResourceOptions;
-    }
-
-    public void setDefaultResourceOptions(Properties defaultResourceOptions) {
-        this.defaultResourceOptions = defaultResourceOptions;
-    }
-
-    public Boolean getEphemeral() {
-        return ephemeral;
-    }
-
-    public void setEphemeral(Boolean ephemeral) {
-        this.ephemeral = ephemeral;
-    }
-
-    public ReadConsistency getReadConsistency() {
-        return readConsistency;
-    }
-
-    public void setReadConsistency(ReadConsistency readConsistency) {
-        this.readConsistency = readConsistency;
-    }
-
-    public Map<String, Properties> getResourceConfigs() {
-        return resourceConfigs;
-    }
-
-    public void setResourceConfigs(Map<String, Properties> resourceConfigs) {
-        this.resourceConfigs = resourceConfigs;
-    }
-
-    public Map<String, Properties> getResourceOptions() {
-        return resourceOptions;
-    }
-
-    public void setResourceOptions(Map<String, Properties> resourceOptions) {
-        this.resourceOptions = resourceOptions;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/queue/springboot/AtomixQueueComponentConverter.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/queue/springboot/AtomixQueueComponentConverter.java
deleted file mode 100644
index 4013b20..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/queue/springboot/AtomixQueueComponentConverter.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.queue.springboot;
-
-import java.util.LinkedHashSet;
-import java.util.Set;
-import javax.annotation.Generated;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.context.properties.ConfigurationPropertiesBinding;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.core.convert.TypeDescriptor;
-import org.springframework.core.convert.converter.GenericConverter;
-import org.springframework.stereotype.Component;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@ConfigurationPropertiesBinding
-@Component
-public class AtomixQueueComponentConverter implements GenericConverter {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-
-    public Set<ConvertiblePair> getConvertibleTypes() {
-        Set<ConvertiblePair> answer = new LinkedHashSet<>();
-        answer.add(new ConvertiblePair(String.class, io.atomix.Atomix.class));
-        answer.add(new ConvertiblePair(String.class, org.apache.camel.component.atomix.client.queue.AtomixQueueConfiguration.class));
-        answer.add(new ConvertiblePair(String.class, java.util.Properties.class));
-        return answer;
-    }
-
-    public Object convert(
-            Object source,
-            TypeDescriptor sourceType,
-            TypeDescriptor targetType) {
-        if (source == null) {
-            return null;
-        }
-        String ref = source.toString();
-        if (!ref.startsWith("#")) {
-            return null;
-        }
-        ref = ref.startsWith("#bean:") ? ref.substring(6) : ref.substring(1);
-        switch (targetType.getName()) {
-            case "io.atomix.Atomix": return applicationContext.getBean(ref, io.atomix.Atomix.class);
-            case "org.apache.camel.component.atomix.client.queue.AtomixQueueConfiguration": return applicationContext.getBean(ref, org.apache.camel.component.atomix.client.queue.AtomixQueueConfiguration.class);
-            case "java.util.Properties": return applicationContext.getBean(ref, java.util.Properties.class);
-        }
-        return null;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/set/springboot/AtomixSetComponentAutoConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/set/springboot/AtomixSetComponentAutoConfiguration.java
deleted file mode 100644
index b58c92d..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/set/springboot/AtomixSetComponentAutoConfiguration.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.set.springboot;
-
-import javax.annotation.Generated;
-import org.apache.camel.CamelContext;
-import org.apache.camel.Component;
-import org.apache.camel.component.atomix.client.set.AtomixSetComponent;
-import org.apache.camel.spi.ComponentCustomizer;
-import org.apache.camel.spring.boot.CamelAutoConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationProperties;
-import org.apache.camel.spring.boot.util.CamelPropertiesHelper;
-import org.apache.camel.spring.boot.util.ConditionalOnCamelContextAndAutoConfigurationBeans;
-import org.apache.camel.spring.boot.util.ConditionalOnHierarchicalProperties;
-import org.apache.camel.spring.boot.util.HierarchicalPropertiesEvaluator;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.autoconfigure.AutoConfigureAfter;
-import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Conditional;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Lazy;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@Conditional(ConditionalOnCamelContextAndAutoConfigurationBeans.class)
-@EnableConfigurationProperties({ComponentConfigurationProperties.class,AtomixSetComponentConfiguration.class})
-@ConditionalOnHierarchicalProperties({"camel.component", "camel.component.atomix-set"})
-@AutoConfigureAfter({CamelAutoConfiguration.class, AtomixSetComponentConverter.class})
-public class AtomixSetComponentAutoConfiguration {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-    private final CamelContext camelContext;
-    @Autowired
-    private AtomixSetComponentConfiguration configuration;
-
-    public AtomixSetComponentAutoConfiguration(
-            org.apache.camel.CamelContext camelContext) {
-        this.camelContext = camelContext;
-    }
-
-    @Lazy
-    @Bean
-    public ComponentCustomizer configureAtomixSetComponent() {
-        return new ComponentCustomizer() {
-            @Override
-            public void configure(String name, Component target) {
-                CamelPropertiesHelper.copyProperties(camelContext, configuration, target);
-            }
-            @Override
-            public boolean isEnabled(String name, Component target) {
-                return HierarchicalPropertiesEvaluator.evaluate(
-                        applicationContext,
-                        "camel.component.customizer",
-                        "camel.component.atomix-set.customizer")
-                    && target instanceof AtomixSetComponent;
-            }
-        };
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/set/springboot/AtomixSetComponentConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/set/springboot/AtomixSetComponentConfiguration.java
deleted file mode 100644
index d3c3ba2..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/set/springboot/AtomixSetComponentConfiguration.java
+++ /dev/null
@@ -1,274 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.set.springboot;
-
-import java.util.List;
-import java.util.Map;
-import java.util.Properties;
-import javax.annotation.Generated;
-import io.atomix.Atomix;
-import io.atomix.catalyst.transport.Address;
-import io.atomix.resource.ReadConsistency;
-import org.apache.camel.component.atomix.client.set.AtomixSet.Action;
-import org.apache.camel.component.atomix.client.set.AtomixSetComponent;
-import org.apache.camel.component.atomix.client.set.AtomixSetConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
-import org.springframework.boot.context.properties.ConfigurationProperties;
-
-/**
- * Access Atomix's distributed set.
- * 
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@ConfigurationProperties(prefix = "camel.component.atomix-set")
-public class AtomixSetComponentConfiguration
-        extends
-            ComponentConfigurationPropertiesCommon {
-
-    /**
-     * Whether to enable auto configuration of the atomix-set component. This is
-     * enabled by default.
-     */
-    private Boolean enabled;
-    /**
-     * The Atomix instance to use. The option is a io.atomix.Atomix type.
-     */
-    private Atomix atomix;
-    /**
-     * The shared component configuration. The option is a
-     * org.apache.camel.component.atomix.client.set.AtomixSetConfiguration type.
-     */
-    private AtomixSetConfiguration configuration;
-    /**
-     * The path to the AtomixClient configuration
-     */
-    private String configurationUri;
-    /**
-     * The default action.
-     */
-    private Action defaultAction = Action.ADD;
-    /**
-     * The nodes the AtomixClient should connect to
-     */
-    private List<Address> nodes;
-    /**
-     * The header that wil carry the result.
-     */
-    private String resultHeader;
-    /**
-     * The class name (fqn) of the Atomix transport
-     */
-    private String transportClassName = "io.atomix.catalyst.transport.netty.NettyTransport";
-    /**
-     * The resource ttl. The option is a long type.
-     */
-    private Long ttl;
-    /**
-     * Allows for bridging the consumer to the Camel routing Error Handler,
-     * which mean any exceptions occurred while the consumer is trying to pickup
-     * incoming messages, or the likes, will now be processed as a message and
-     * handled by the routing Error Handler. By default the consumer will use
-     * the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that
-     * will be logged at WARN or ERROR level and ignored.
-     */
-    private Boolean bridgeErrorHandler = false;
-    /**
-     * Whether the producer should be started lazy (on the first message). By
-     * starting lazy you can use this to allow CamelContext and routes to
-     * startup in situations where a producer may otherwise fail during starting
-     * and cause the route to fail being started. By deferring this startup to
-     * be lazy then the startup failure can be handled during routing messages
-     * via Camel's routing error handlers. Beware that when the first message is
-     * processed then creating and starting the producer may take a little time
-     * and prolong the total processing time of the processing.
-     */
-    private Boolean lazyStartProducer = false;
-    /**
-     * Whether autowiring is enabled. This is used for automatic autowiring
-     * options (the option must be marked as autowired) by looking up in the
-     * registry to find if there is a single instance of matching type, which
-     * then gets configured on the component. This can be used for automatic
-     * configuring JDBC data sources, JMS connection factories, AWS Clients,
-     * etc.
-     */
-    private Boolean autowiredEnabled = true;
-    /**
-     * The cluster wide default resource configuration. The option is a
-     * java.util.Properties type.
-     */
-    private Properties defaultResourceConfig;
-    /**
-     * The local default resource options. The option is a java.util.Properties
-     * type.
-     */
-    private Properties defaultResourceOptions;
-    /**
-     * Sets if the local member should join groups as PersistentMember or not.
-     * If set to ephemeral the local member will receive an auto generated ID
-     * thus the local one is ignored.
-     */
-    private Boolean ephemeral = false;
-    /**
-     * The read consistency level.
-     */
-    private ReadConsistency readConsistency;
-    /**
-     * Cluster wide resources configuration.
-     */
-    private Map<String, Properties> resourceConfigs;
-    /**
-     * Local resources configurations
-     */
-    private Map<String, Properties> resourceOptions;
-
-    public Atomix getAtomix() {
-        return atomix;
-    }
-
-    public void setAtomix(Atomix atomix) {
-        this.atomix = atomix;
-    }
-
-    public AtomixSetConfiguration getConfiguration() {
-        return configuration;
-    }
-
-    public void setConfiguration(AtomixSetConfiguration configuration) {
-        this.configuration = configuration;
-    }
-
-    public String getConfigurationUri() {
-        return configurationUri;
-    }
-
-    public void setConfigurationUri(String configurationUri) {
-        this.configurationUri = configurationUri;
-    }
-
-    public Action getDefaultAction() {
-        return defaultAction;
-    }
-
-    public void setDefaultAction(Action defaultAction) {
-        this.defaultAction = defaultAction;
-    }
-
-    public List<Address> getNodes() {
-        return nodes;
-    }
-
-    public void setNodes(List<Address> nodes) {
-        this.nodes = nodes;
-    }
-
-    public String getResultHeader() {
-        return resultHeader;
-    }
-
-    public void setResultHeader(String resultHeader) {
-        this.resultHeader = resultHeader;
-    }
-
-    public String getTransportClassName() {
-        return transportClassName;
-    }
-
-    public void setTransportClassName(String transportClassName) {
-        this.transportClassName = transportClassName;
-    }
-
-    public Long getTtl() {
-        return ttl;
-    }
-
-    public void setTtl(Long ttl) {
-        this.ttl = ttl;
-    }
-
-    public Boolean getBridgeErrorHandler() {
-        return bridgeErrorHandler;
-    }
-
-    public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
-        this.bridgeErrorHandler = bridgeErrorHandler;
-    }
-
-    public Boolean getLazyStartProducer() {
-        return lazyStartProducer;
-    }
-
-    public void setLazyStartProducer(Boolean lazyStartProducer) {
-        this.lazyStartProducer = lazyStartProducer;
-    }
-
-    public Boolean getAutowiredEnabled() {
-        return autowiredEnabled;
-    }
-
-    public void setAutowiredEnabled(Boolean autowiredEnabled) {
-        this.autowiredEnabled = autowiredEnabled;
-    }
-
-    public Properties getDefaultResourceConfig() {
-        return defaultResourceConfig;
-    }
-
-    public void setDefaultResourceConfig(Properties defaultResourceConfig) {
-        this.defaultResourceConfig = defaultResourceConfig;
-    }
-
-    public Properties getDefaultResourceOptions() {
-        return defaultResourceOptions;
-    }
-
-    public void setDefaultResourceOptions(Properties defaultResourceOptions) {
-        this.defaultResourceOptions = defaultResourceOptions;
-    }
-
-    public Boolean getEphemeral() {
-        return ephemeral;
-    }
-
-    public void setEphemeral(Boolean ephemeral) {
-        this.ephemeral = ephemeral;
-    }
-
-    public ReadConsistency getReadConsistency() {
-        return readConsistency;
-    }
-
-    public void setReadConsistency(ReadConsistency readConsistency) {
-        this.readConsistency = readConsistency;
-    }
-
-    public Map<String, Properties> getResourceConfigs() {
-        return resourceConfigs;
-    }
-
-    public void setResourceConfigs(Map<String, Properties> resourceConfigs) {
-        this.resourceConfigs = resourceConfigs;
-    }
-
-    public Map<String, Properties> getResourceOptions() {
-        return resourceOptions;
-    }
-
-    public void setResourceOptions(Map<String, Properties> resourceOptions) {
-        this.resourceOptions = resourceOptions;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/set/springboot/AtomixSetComponentConverter.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/set/springboot/AtomixSetComponentConverter.java
deleted file mode 100644
index acdb22a..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/set/springboot/AtomixSetComponentConverter.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.set.springboot;
-
-import java.util.LinkedHashSet;
-import java.util.Set;
-import javax.annotation.Generated;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.context.properties.ConfigurationPropertiesBinding;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.core.convert.TypeDescriptor;
-import org.springframework.core.convert.converter.GenericConverter;
-import org.springframework.stereotype.Component;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@ConfigurationPropertiesBinding
-@Component
-public class AtomixSetComponentConverter implements GenericConverter {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-
-    public Set<ConvertiblePair> getConvertibleTypes() {
-        Set<ConvertiblePair> answer = new LinkedHashSet<>();
-        answer.add(new ConvertiblePair(String.class, io.atomix.Atomix.class));
-        answer.add(new ConvertiblePair(String.class, org.apache.camel.component.atomix.client.set.AtomixSetConfiguration.class));
-        answer.add(new ConvertiblePair(String.class, java.util.Properties.class));
-        return answer;
-    }
-
-    public Object convert(
-            Object source,
-            TypeDescriptor sourceType,
-            TypeDescriptor targetType) {
-        if (source == null) {
-            return null;
-        }
-        String ref = source.toString();
-        if (!ref.startsWith("#")) {
-            return null;
-        }
-        ref = ref.startsWith("#bean:") ? ref.substring(6) : ref.substring(1);
-        switch (targetType.getName()) {
-            case "io.atomix.Atomix": return applicationContext.getBean(ref, io.atomix.Atomix.class);
-            case "org.apache.camel.component.atomix.client.set.AtomixSetConfiguration": return applicationContext.getBean(ref, org.apache.camel.component.atomix.client.set.AtomixSetConfiguration.class);
-            case "java.util.Properties": return applicationContext.getBean(ref, java.util.Properties.class);
-        }
-        return null;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/value/springboot/AtomixValueComponentAutoConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/value/springboot/AtomixValueComponentAutoConfiguration.java
deleted file mode 100644
index d4dc121..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/value/springboot/AtomixValueComponentAutoConfiguration.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.value.springboot;
-
-import javax.annotation.Generated;
-import org.apache.camel.CamelContext;
-import org.apache.camel.Component;
-import org.apache.camel.component.atomix.client.value.AtomixValueComponent;
-import org.apache.camel.spi.ComponentCustomizer;
-import org.apache.camel.spring.boot.CamelAutoConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationProperties;
-import org.apache.camel.spring.boot.util.CamelPropertiesHelper;
-import org.apache.camel.spring.boot.util.ConditionalOnCamelContextAndAutoConfigurationBeans;
-import org.apache.camel.spring.boot.util.ConditionalOnHierarchicalProperties;
-import org.apache.camel.spring.boot.util.HierarchicalPropertiesEvaluator;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.autoconfigure.AutoConfigureAfter;
-import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Conditional;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Lazy;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@Conditional(ConditionalOnCamelContextAndAutoConfigurationBeans.class)
-@EnableConfigurationProperties({ComponentConfigurationProperties.class,AtomixValueComponentConfiguration.class})
-@ConditionalOnHierarchicalProperties({"camel.component", "camel.component.atomix-value"})
-@AutoConfigureAfter({CamelAutoConfiguration.class, AtomixValueComponentConverter.class})
-public class AtomixValueComponentAutoConfiguration {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-    private final CamelContext camelContext;
-    @Autowired
-    private AtomixValueComponentConfiguration configuration;
-
-    public AtomixValueComponentAutoConfiguration(
-            org.apache.camel.CamelContext camelContext) {
-        this.camelContext = camelContext;
-    }
-
-    @Lazy
-    @Bean
-    public ComponentCustomizer configureAtomixValueComponent() {
-        return new ComponentCustomizer() {
-            @Override
-            public void configure(String name, Component target) {
-                CamelPropertiesHelper.copyProperties(camelContext, configuration, target);
-            }
-            @Override
-            public boolean isEnabled(String name, Component target) {
-                return HierarchicalPropertiesEvaluator.evaluate(
-                        applicationContext,
-                        "camel.component.customizer",
-                        "camel.component.atomix-value.customizer")
-                    && target instanceof AtomixValueComponent;
-            }
-        };
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/value/springboot/AtomixValueComponentConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/value/springboot/AtomixValueComponentConfiguration.java
deleted file mode 100644
index 3c892e1..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/value/springboot/AtomixValueComponentConfiguration.java
+++ /dev/null
@@ -1,275 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.value.springboot;
-
-import java.util.List;
-import java.util.Map;
-import java.util.Properties;
-import javax.annotation.Generated;
-import io.atomix.Atomix;
-import io.atomix.catalyst.transport.Address;
-import io.atomix.resource.ReadConsistency;
-import org.apache.camel.component.atomix.client.value.AtomixValue.Action;
-import org.apache.camel.component.atomix.client.value.AtomixValueComponent;
-import org.apache.camel.component.atomix.client.value.AtomixValueConfiguration;
-import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
-import org.springframework.boot.context.properties.ConfigurationProperties;
-
-/**
- * Access Atomix's distributed value.
- * 
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@ConfigurationProperties(prefix = "camel.component.atomix-value")
-public class AtomixValueComponentConfiguration
-        extends
-            ComponentConfigurationPropertiesCommon {
-
-    /**
-     * Whether to enable auto configuration of the atomix-value component. This
-     * is enabled by default.
-     */
-    private Boolean enabled;
-    /**
-     * The Atomix instance to use. The option is a io.atomix.Atomix type.
-     */
-    private Atomix atomix;
-    /**
-     * The shared component configuration. The option is a
-     * org.apache.camel.component.atomix.client.value.AtomixValueConfiguration
-     * type.
-     */
-    private AtomixValueConfiguration configuration;
-    /**
-     * The path to the AtomixClient configuration
-     */
-    private String configurationUri;
-    /**
-     * The default action.
-     */
-    private Action defaultAction = Action.SET;
-    /**
-     * The nodes the AtomixClient should connect to
-     */
-    private List<Address> nodes;
-    /**
-     * The header that wil carry the result.
-     */
-    private String resultHeader;
-    /**
-     * The class name (fqn) of the Atomix transport
-     */
-    private String transportClassName = "io.atomix.catalyst.transport.netty.NettyTransport";
-    /**
-     * The resource ttl. The option is a long type.
-     */
-    private Long ttl;
-    /**
-     * Allows for bridging the consumer to the Camel routing Error Handler,
-     * which mean any exceptions occurred while the consumer is trying to pickup
-     * incoming messages, or the likes, will now be processed as a message and
-     * handled by the routing Error Handler. By default the consumer will use
-     * the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that
-     * will be logged at WARN or ERROR level and ignored.
-     */
-    private Boolean bridgeErrorHandler = false;
-    /**
-     * Whether the producer should be started lazy (on the first message). By
-     * starting lazy you can use this to allow CamelContext and routes to
-     * startup in situations where a producer may otherwise fail during starting
-     * and cause the route to fail being started. By deferring this startup to
-     * be lazy then the startup failure can be handled during routing messages
-     * via Camel's routing error handlers. Beware that when the first message is
-     * processed then creating and starting the producer may take a little time
-     * and prolong the total processing time of the processing.
-     */
-    private Boolean lazyStartProducer = false;
-    /**
-     * Whether autowiring is enabled. This is used for automatic autowiring
-     * options (the option must be marked as autowired) by looking up in the
-     * registry to find if there is a single instance of matching type, which
-     * then gets configured on the component. This can be used for automatic
-     * configuring JDBC data sources, JMS connection factories, AWS Clients,
-     * etc.
-     */
-    private Boolean autowiredEnabled = true;
-    /**
-     * The cluster wide default resource configuration. The option is a
-     * java.util.Properties type.
-     */
-    private Properties defaultResourceConfig;
-    /**
-     * The local default resource options. The option is a java.util.Properties
-     * type.
-     */
-    private Properties defaultResourceOptions;
-    /**
-     * Sets if the local member should join groups as PersistentMember or not.
-     * If set to ephemeral the local member will receive an auto generated ID
-     * thus the local one is ignored.
-     */
-    private Boolean ephemeral = false;
-    /**
-     * The read consistency level.
-     */
-    private ReadConsistency readConsistency;
-    /**
-     * Cluster wide resources configuration.
-     */
-    private Map<String, Properties> resourceConfigs;
-    /**
-     * Local resources configurations
-     */
-    private Map<String, Properties> resourceOptions;
-
-    public Atomix getAtomix() {
-        return atomix;
-    }
-
-    public void setAtomix(Atomix atomix) {
-        this.atomix = atomix;
-    }
-
-    public AtomixValueConfiguration getConfiguration() {
-        return configuration;
-    }
-
-    public void setConfiguration(AtomixValueConfiguration configuration) {
-        this.configuration = configuration;
-    }
-
-    public String getConfigurationUri() {
-        return configurationUri;
-    }
-
-    public void setConfigurationUri(String configurationUri) {
-        this.configurationUri = configurationUri;
-    }
-
-    public Action getDefaultAction() {
-        return defaultAction;
-    }
-
-    public void setDefaultAction(Action defaultAction) {
-        this.defaultAction = defaultAction;
-    }
-
-    public List<Address> getNodes() {
-        return nodes;
-    }
-
-    public void setNodes(List<Address> nodes) {
-        this.nodes = nodes;
-    }
-
-    public String getResultHeader() {
-        return resultHeader;
-    }
-
-    public void setResultHeader(String resultHeader) {
-        this.resultHeader = resultHeader;
-    }
-
-    public String getTransportClassName() {
-        return transportClassName;
-    }
-
-    public void setTransportClassName(String transportClassName) {
-        this.transportClassName = transportClassName;
-    }
-
-    public Long getTtl() {
-        return ttl;
-    }
-
-    public void setTtl(Long ttl) {
-        this.ttl = ttl;
-    }
-
-    public Boolean getBridgeErrorHandler() {
-        return bridgeErrorHandler;
-    }
-
-    public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
-        this.bridgeErrorHandler = bridgeErrorHandler;
-    }
-
-    public Boolean getLazyStartProducer() {
-        return lazyStartProducer;
-    }
-
-    public void setLazyStartProducer(Boolean lazyStartProducer) {
-        this.lazyStartProducer = lazyStartProducer;
-    }
-
-    public Boolean getAutowiredEnabled() {
-        return autowiredEnabled;
-    }
-
-    public void setAutowiredEnabled(Boolean autowiredEnabled) {
-        this.autowiredEnabled = autowiredEnabled;
-    }
-
-    public Properties getDefaultResourceConfig() {
-        return defaultResourceConfig;
-    }
-
-    public void setDefaultResourceConfig(Properties defaultResourceConfig) {
-        this.defaultResourceConfig = defaultResourceConfig;
-    }
-
-    public Properties getDefaultResourceOptions() {
-        return defaultResourceOptions;
-    }
-
-    public void setDefaultResourceOptions(Properties defaultResourceOptions) {
-        this.defaultResourceOptions = defaultResourceOptions;
-    }
-
-    public Boolean getEphemeral() {
-        return ephemeral;
-    }
-
-    public void setEphemeral(Boolean ephemeral) {
-        this.ephemeral = ephemeral;
-    }
-
-    public ReadConsistency getReadConsistency() {
-        return readConsistency;
-    }
-
-    public void setReadConsistency(ReadConsistency readConsistency) {
-        this.readConsistency = readConsistency;
-    }
-
-    public Map<String, Properties> getResourceConfigs() {
-        return resourceConfigs;
-    }
-
-    public void setResourceConfigs(Map<String, Properties> resourceConfigs) {
-        this.resourceConfigs = resourceConfigs;
-    }
-
-    public Map<String, Properties> getResourceOptions() {
-        return resourceOptions;
-    }
-
-    public void setResourceOptions(Map<String, Properties> resourceOptions) {
-        this.resourceOptions = resourceOptions;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/value/springboot/AtomixValueComponentConverter.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/value/springboot/AtomixValueComponentConverter.java
deleted file mode 100644
index 0653bd8..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/client/value/springboot/AtomixValueComponentConverter.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.client.value.springboot;
-
-import java.util.LinkedHashSet;
-import java.util.Set;
-import javax.annotation.Generated;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.context.properties.ConfigurationPropertiesBinding;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.core.convert.TypeDescriptor;
-import org.springframework.core.convert.converter.GenericConverter;
-import org.springframework.stereotype.Component;
-
-/**
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.springboot.maven.SpringBootAutoConfigurationMojo")
-@Configuration(proxyBeanMethods = false)
-@ConfigurationPropertiesBinding
-@Component
-public class AtomixValueComponentConverter implements GenericConverter {
-
-    @Autowired
-    private ApplicationContext applicationContext;
-
-    public Set<ConvertiblePair> getConvertibleTypes() {
-        Set<ConvertiblePair> answer = new LinkedHashSet<>();
-        answer.add(new ConvertiblePair(String.class, io.atomix.Atomix.class));
-        answer.add(new ConvertiblePair(String.class, org.apache.camel.component.atomix.client.value.AtomixValueConfiguration.class));
-        answer.add(new ConvertiblePair(String.class, java.util.Properties.class));
-        return answer;
-    }
-
-    public Object convert(
-            Object source,
-            TypeDescriptor sourceType,
-            TypeDescriptor targetType) {
-        if (source == null) {
-            return null;
-        }
-        String ref = source.toString();
-        if (!ref.startsWith("#")) {
-            return null;
-        }
-        ref = ref.startsWith("#bean:") ? ref.substring(6) : ref.substring(1);
-        switch (targetType.getName()) {
-            case "io.atomix.Atomix": return applicationContext.getBean(ref, io.atomix.Atomix.class);
-            case "org.apache.camel.component.atomix.client.value.AtomixValueConfiguration": return applicationContext.getBean(ref, org.apache.camel.component.atomix.client.value.AtomixValueConfiguration.class);
-            case "java.util.Properties": return applicationContext.getBean(ref, java.util.Properties.class);
-        }
-        return null;
-    }
-}
\ No newline at end of file
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/cluster/springboot/AtomixClusterServiceAutoConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/cluster/springboot/AtomixClusterServiceAutoConfiguration.java
deleted file mode 100644
index 12b8412..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/cluster/springboot/AtomixClusterServiceAutoConfiguration.java
+++ /dev/null
@@ -1,98 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.cluster.springboot;
-
-import java.util.stream.Collectors;
-
-import io.atomix.catalyst.transport.Address;
-import org.apache.camel.cluster.CamelClusterService;
-import org.apache.camel.component.atomix.cluster.AtomixClusterClientService;
-import org.apache.camel.component.atomix.cluster.AtomixClusterService;
-import org.apache.camel.spring.boot.CamelAutoConfiguration;
-import org.apache.camel.spring.boot.cluster.ClusteredRouteControllerAutoConfiguration;
-import org.apache.camel.util.ObjectHelper;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.config.ConfigurableBeanFactory;
-import org.springframework.boot.autoconfigure.AutoConfigureBefore;
-import org.springframework.boot.autoconfigure.condition.AllNestedConditions;
-import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
-import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Conditional;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Scope;
-
-@Configuration(proxyBeanMethods = false)
-@AutoConfigureBefore({ ClusteredRouteControllerAutoConfiguration.class, CamelAutoConfiguration.class })
-@Conditional(AtomixClusterServiceAutoConfiguration.AutoConfigurationCondition.class)
-@EnableConfigurationProperties(AtomixClusterServiceConfiguration.class)
-public class AtomixClusterServiceAutoConfiguration {
-    @Autowired
-    private AtomixClusterServiceConfiguration configuration;
-
-    @Bean(name = "atomix-cluster-service")
-    @Scope(ConfigurableBeanFactory.SCOPE_SINGLETON)
-    @ConditionalOnProperty(prefix = "camel.cluster.atomix", name = "mode", havingValue = "node")
-    public CamelClusterService atomixClusterService() {
-        AtomixClusterService service = new AtomixClusterService();
-        service.setNodes(configuration.getNodes().stream().map(Address::new).collect(Collectors.toList()));
-
-        ObjectHelper.ifNotEmpty(configuration.isEphemeral(), service::setEphemeral);
-        ObjectHelper.ifNotEmpty(configuration.getId(), service::setId);
-        ObjectHelper.ifNotEmpty(configuration.getAddress(), service::setAddress);
-        ObjectHelper.ifNotEmpty(configuration.getStoragePath(), service::setStoragePath);
-        ObjectHelper.ifNotEmpty(configuration.getStorageLevel(), service::setStorageLevel);
-        ObjectHelper.ifNotEmpty(configuration.getConfigurationUri(), service::setConfigurationUri);
-        ObjectHelper.ifNotEmpty(configuration.getAttributes(), service::setAttributes);
-        ObjectHelper.ifNotEmpty(configuration.getOrder(), service::setOrder);
-
-        return service;
-    }
-
-    @Bean(name = "atomix-cluster-client-service")
-    @Scope(ConfigurableBeanFactory.SCOPE_SINGLETON)
-    @ConditionalOnProperty(prefix = "camel.cluster.atomix", name = "mode", havingValue = "client")
-    public CamelClusterService atomixClusterClientService() {
-        AtomixClusterClientService service = new AtomixClusterClientService();
-        service.setNodes(configuration.getNodes().stream().map(Address::new).collect(Collectors.toList()));
-
-        ObjectHelper.ifNotEmpty(configuration.getId(), service::setId);
-        ObjectHelper.ifNotEmpty(configuration.getConfigurationUri(), service::setConfigurationUri);
-        ObjectHelper.ifNotEmpty(configuration.getAttributes(), service::setAttributes);
-        ObjectHelper.ifNotEmpty(configuration.getOrder(), service::setOrder);
-
-        return service;
-    }
-
-    // *****************************************
-    // Conditions
-    // *****************************************
-
-    public static class AutoConfigurationCondition extends AllNestedConditions {
-        public AutoConfigurationCondition() {
-            super(ConfigurationPhase.REGISTER_BEAN);
-        }
-
-        @ConditionalOnProperty(prefix = "camel.cluster.atomix", name = "enabled")
-        static class IfEnabled {
-        }
-
-        @ConditionalOnProperty(prefix = "camel.cluster.atomix", name = "mode")
-        static class WithMode {
-        }
-    }
-}
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/cluster/springboot/AtomixClusterServiceConfiguration.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/cluster/springboot/AtomixClusterServiceConfiguration.java
deleted file mode 100644
index 3e8ad74..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/cluster/springboot/AtomixClusterServiceConfiguration.java
+++ /dev/null
@@ -1,178 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.cluster.springboot;
-
-import java.util.HashSet;
-import java.util.Map;
-import java.util.Set;
-
-import io.atomix.copycat.server.storage.StorageLevel;
-import org.springframework.boot.context.properties.ConfigurationProperties;
-
-@ConfigurationProperties(prefix = "camel.cluster.atomix")
-public class AtomixClusterServiceConfiguration {
-    enum Mode {
-        node,
-        client
-    }
-
-    /**
-     * Sets if the atomix cluster service should be enabled or not, default is false.
-     */
-    private boolean enabled;
-
-    /**
-     * Sets the cluster mode.
-     */
-    private Mode mode;
-    /**
-     * The address of the nodes composing the cluster.
-     */
-    private Set<String> nodes = new HashSet<>();
-
-    /**
-     * The cluster id.
-     */
-    private String id;
-
-    /**
-     * The address of the node - node only.
-     */
-    private String address;
-
-    /**
-     * Sets if the local member should join groups as PersistentMember or not (node only).
-     */
-    private Boolean ephemeral;
-
-    /**
-     * The storage directory - node only.
-     */
-    private String storagePath;
-
-    /**
-     * The storage mode - node only.
-     */
-    private StorageLevel storageLevel = StorageLevel.MEMORY;
-
-    /**
-     * The Atomix configuration uri.
-     */
-    private String configurationUri;
-
-    /**
-     * Custom service attributes.
-     */
-    private Map<String, Object> attributes;
-    
-    /**
-     * Service lookup order/priority.
-     */
-    private Integer order;
-
-    // *********************************
-    // Properties
-    // *********************************
-
-    public boolean isEnabled() {
-        return enabled;
-    }
-
-    public void setEnabled(boolean enabled) {
-        this.enabled = enabled;
-    }
-
-    public Mode getMode() {
-        return mode;
-    }
-
-    public String getAddress() {
-        return address;
-    }
-
-    public void setAddress(String address) {
-        this.address = address;
-    }
-
-    public void setNodes(Set<String> nodes) {
-        this.nodes = nodes;
-    }
-
-    public void setMode(Mode mode) {
-        this.mode = mode;
-    }
-
-    public Set<String> getNodes() {
-        return nodes;
-    }
-
-    public String getId() {
-        return id;
-    }
-
-    public void setId(String id) {
-        this.id = id;
-    }
-
-    public Boolean isEphemeral() {
-        return ephemeral;
-    }
-
-    public void setEphemeral(Boolean ephemeral) {
-        this.ephemeral = ephemeral;
-    }
-
-    public String getStoragePath() {
-        return storagePath;
-    }
-
-    public void setStoragePath(String storagePath) {
-        this.storagePath = storagePath;
-    }
-
-    public StorageLevel getStorageLevel() {
-        return storageLevel;
-    }
-
-    public void setStorageLevel(StorageLevel storageLevel) {
-        this.storageLevel = storageLevel;
-    }
-
-    public String getConfigurationUri() {
-        return configurationUri;
-    }
-
-    public void setConfigurationUri(String configurationUri) {
-        this.configurationUri = configurationUri;
-    }
-
-    public Map<String, Object> getAttributes() {
-        return attributes;
-    }
-
-    public void setAttributes(Map<String, Object> attributes) {
-        this.attributes = attributes;
-    }
-
-    public Integer getOrder() {
-        return order;
-    }
-
-    public void setOrder(Integer order) {
-        this.order = order;
-    }
-}
diff --git a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/springboot/StringToAddressConverter.java b/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/springboot/StringToAddressConverter.java
deleted file mode 100644
index bdfef39..0000000
--- a/components-starter/camel-atomix-starter/src/main/java/org/apache/camel/component/atomix/springboot/StringToAddressConverter.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.atomix.springboot;
-
-import io.atomix.catalyst.transport.Address;
-import org.springframework.core.convert.converter.Converter;
-import org.springframework.stereotype.Component;
-
-@Component
-public class StringToAddressConverter implements Converter<String, Address> {
-    @Override
-    public Address convert(String source) {
-        return new Address(source);
-    }
-}
diff --git a/components-starter/camel-atomix-starter/src/main/resources/META-INF/LICENSE.txt b/components-starter/camel-atomix-starter/src/main/resources/META-INF/LICENSE.txt
deleted file mode 100644
index 6b0b127..0000000
--- a/components-starter/camel-atomix-starter/src/main/resources/META-INF/LICENSE.txt
+++ /dev/null
@@ -1,203 +0,0 @@
-
-                                 Apache License
-                           Version 2.0, January 2004
-                        http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-      "License" shall mean the terms and conditions for use, reproduction,
-      and distribution as defined by Sections 1 through 9 of this document.
-
-      "Licensor" shall mean the copyright owner or entity authorized by
-      the copyright owner that is granting the License.
-
-      "Legal Entity" shall mean the union of the acting entity and all
-      other entities that control, are controlled by, or are under common
-      control with that entity. For the purposes of this definition,
-      "control" means (i) the power, direct or indirect, to cause the
-      direction or management of such entity, whether by contract or
-      otherwise, or (ii) ownership of fifty percent (50%) or more of the
-      outstanding shares, or (iii) beneficial ownership of such entity.
-
-      "You" (or "Your") shall mean an individual or Legal Entity
-      exercising permissions granted by this License.
-
-      "Source" form shall mean the preferred form for making modifications,
-      including but not limited to software source code, documentation
-      source, and configuration files.
-
-      "Object" form shall mean any form resulting from mechanical
-      transformation or translation of a Source form, including but
-      not limited to compiled object code, generated documentation,
-      and conversions to other media types.
-
-      "Work" shall mean the work of authorship, whether in Source or
-      Object form, made available under the License, as indicated by a
-      copyright notice that is included in or attached to the work
-      (an example is provided in the Appendix below).
-
-      "Derivative Works" shall mean any work, whether in Source or Object
-      form, that is based on (or derived from) the Work and for which the
-      editorial revisions, annotations, elaborations, or other modifications
-      represent, as a whole, an original work of authorship. For the purposes
-      of this License, Derivative Works shall not include works that remain
-      separable from, or merely link (or bind by name) to the interfaces of,
-      the Work and Derivative Works thereof.
-
-      "Contribution" shall mean any work of authorship, including
-      the original version of the Work and any modifications or additions
-      to that Work or Derivative Works thereof, that is intentionally
-      submitted to Licensor for inclusion in the Work by the copyright owner
-      or by an individual or Legal Entity authorized to submit on behalf of
-      the copyright owner. For the purposes of this definition, "submitted"
-      means any form of electronic, verbal, or written communication sent
-      to the Licensor or its representatives, including but not limited to
-      communication on electronic mailing lists, source code control systems,
-      and issue tracking systems that are managed by, or on behalf of, the
-      Licensor for the purpose of discussing and improving the Work, but
-      excluding communication that is conspicuously marked or otherwise
-      designated in writing by the copyright owner as "Not a Contribution."
-
-      "Contributor" shall mean Licensor and any individual or Legal Entity
-      on behalf of whom a Contribution has been received by Licensor and
-      subsequently incorporated within the Work.
-
-   2. Grant of Copyright License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      copyright license to reproduce, prepare Derivative Works of,
-      publicly display, publicly perform, sublicense, and distribute the
-      Work and such Derivative Works in Source or Object form.
-
-   3. Grant of Patent License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      (except as stated in this section) patent license to make, have made,
-      use, offer to sell, sell, import, and otherwise transfer the Work,
-      where such license applies only to those patent claims licensable
-      by such Contributor that are necessarily infringed by their
-      Contribution(s) alone or by combination of their Contribution(s)
-      with the Work to which such Contribution(s) was submitted. If You
-      institute patent litigation against any entity (including a
-      cross-claim or counterclaim in a lawsuit) alleging that the Work
-      or a Contribution incorporated within the Work constitutes direct
-      or contributory patent infringement, then any patent licenses
-      granted to You under this License for that Work shall terminate
-      as of the date such litigation is filed.
-
-   4. Redistribution. You may reproduce and distribute copies of the
-      Work or Derivative Works thereof in any medium, with or without
-      modifications, and in Source or Object form, provided that You
-      meet the following conditions:
-
-      (a) You must give any other recipients of the Work or
-          Derivative Works a copy of this License; and
-
-      (b) You must cause any modified files to carry prominent notices
-          stating that You changed the files; and
-
-      (c) You must retain, in the Source form of any Derivative Works
-          that You distribute, all copyright, patent, trademark, and
-          attribution notices from the Source form of the Work,
-          excluding those notices that do not pertain to any part of
-          the Derivative Works; and
-
-      (d) If the Work includes a "NOTICE" text file as part of its
-          distribution, then any Derivative Works that You distribute must
-          include a readable copy of the attribution notices contained
-          within such NOTICE file, excluding those notices that do not
-          pertain to any part of the Derivative Works, in at least one
-          of the following places: within a NOTICE text file distributed
-          as part of the Derivative Works; within the Source form or
-          documentation, if provided along with the Derivative Works; or,
-          within a display generated by the Derivative Works, if and
-          wherever such third-party notices normally appear. The contents
-          of the NOTICE file are for informational purposes only and
-          do not modify the License. You may add Your own attribution
-          notices within Derivative Works that You distribute, alongside
-          or as an addendum to the NOTICE text from the Work, provided
-          that such additional attribution notices cannot be construed
-          as modifying the License.
-
-      You may add Your own copyright statement to Your modifications and
-      may provide additional or different license terms and conditions
-      for use, reproduction, or distribution of Your modifications, or
-      for any such Derivative Works as a whole, provided Your use,
-      reproduction, and distribution of the Work otherwise complies with
-      the conditions stated in this License.
-
-   5. Submission of Contributions. Unless You explicitly state otherwise,
-      any Contribution intentionally submitted for inclusion in the Work
-      by You to the Licensor shall be under the terms and conditions of
-      this License, without any additional terms or conditions.
-      Notwithstanding the above, nothing herein shall supersede or modify
-      the terms of any separate license agreement you may have executed
-      with Licensor regarding such Contributions.
-
-   6. Trademarks. This License does not grant permission to use the trade
-      names, trademarks, service marks, or product names of the Licensor,
-      except as required for reasonable and customary use in describing the
-      origin of the Work and reproducing the content of the NOTICE file.
-
-   7. Disclaimer of Warranty. Unless required by applicable law or
-      agreed to in writing, Licensor provides the Work (and each
-      Contributor provides its Contributions) on an "AS IS" BASIS,
-      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-      implied, including, without limitation, any warranties or conditions
-      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-      PARTICULAR PURPOSE. You are solely responsible for determining the
-      appropriateness of using or redistributing the Work and assume any
-      risks associated with Your exercise of permissions under this License.
-
-   8. Limitation of Liability. In no event and under no legal theory,
-      whether in tort (including negligence), contract, or otherwise,
-      unless required by applicable law (such as deliberate and grossly
-      negligent acts) or agreed to in writing, shall any Contributor be
-      liable to You for damages, including any direct, indirect, special,
-      incidental, or consequential damages of any character arising as a
-      result of this License or out of the use or inability to use the
-      Work (including but not limited to damages for loss of goodwill,
-      work stoppage, computer failure or malfunction, or any and all
-      other commercial damages or losses), even if such Contributor
-      has been advised of the possibility of such damages.
-
-   9. Accepting Warranty or Additional Liability. While redistributing
-      the Work or Derivative Works thereof, You may choose to offer,
-      and charge a fee for, acceptance of support, warranty, indemnity,
-      or other liability obligations and/or rights consistent with this
-      License. However, in accepting such obligations, You may act only
-      on Your own behalf and on Your sole responsibility, not on behalf
-      of any other Contributor, and only if You agree to indemnify,
-      defend, and hold each Contributor harmless for any liability
-      incurred by, or claims asserted against, such Contributor by reason
-      of your accepting any such warranty or additional liability.
-
-   END OF TERMS AND CONDITIONS
-
-   APPENDIX: How to apply the Apache License to your work.
-
-      To apply the Apache License to your work, attach the following
-      boilerplate notice, with the fields enclosed by brackets "[]"
-      replaced with your own identifying information. (Don't include
-      the brackets!)  The text should be enclosed in the appropriate
-      comment syntax for the file format. We also recommend that a
-      file or class name and description of purpose be included on the
-      same "printed page" as the copyright notice for easier
-      identification within third-party archives.
-
-   Copyright [yyyy] [name of copyright owner]
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
-
diff --git a/components-starter/camel-atomix-starter/src/main/resources/META-INF/NOTICE.txt b/components-starter/camel-atomix-starter/src/main/resources/META-INF/NOTICE.txt
deleted file mode 100644
index 2e215bf..0000000
--- a/components-starter/camel-atomix-starter/src/main/resources/META-INF/NOTICE.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-   =========================================================================
-   ==  NOTICE file corresponding to the section 4 d of                    ==
-   ==  the Apache License, Version 2.0,                                   ==
-   ==  in this case for the Apache Camel distribution.                    ==
-   =========================================================================
-
-   This product includes software developed by
-   The Apache Software Foundation (http://www.apache.org/).
-
-   Please read the different LICENSE files present in the licenses directory of
-   this distribution.
diff --git a/components-starter/camel-atomix-starter/src/main/resources/META-INF/spring.factories b/components-starter/camel-atomix-starter/src/main/resources/META-INF/spring.factories
deleted file mode 100644
index 74a1243..0000000
--- a/components-starter/camel-atomix-starter/src/main/resources/META-INF/spring.factories
+++ /dev/null
@@ -1,54 +0,0 @@
-## ---------------------------------------------------------------------------
-## Licensed to the Apache Software Foundation (ASF) under one or more
-## contributor license agreements.  See the NOTICE file distributed with
-## this work for additional information regarding copyright ownership.
-## The ASF licenses this file to You under the Apache License, Version 2.0
-## (the "License"); you may not use this file except in compliance with
-## the License.  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-## Unless required by applicable law or agreed to in writing, software
-## distributed under the License is distributed on an "AS IS" BASIS,
-## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-## See the License for the specific language governing permissions and
-## limitations under the License.
-## ---------------------------------------------------------------------------
-
-org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
-org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentAutoConfiguration,\
-org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentAutoConfiguration,\
-org.apache.camel.component.atomix.cluster.springboot.AtomixClusterServiceAutoConfiguration,\
-org.apache.camel.component.atomix.client.set.springboot.AtomixSetComponentConverter,\
-org.apache.camel.component.atomix.client.queue.springboot.AtomixQueueComponentConverter,\
-org.apache.camel.component.atomix.client.map.springboot.AtomixMapComponentConverter,\
-org.apache.camel.component.atomix.client.multimap.springboot.AtomixMultiMapComponentConverter,\
-org.apache.camel.component.atomix.client.value.springboot.AtomixValueComponentConverter,\
-org.apache.camel.component.atomix.client.messaging.springboot.AtomixMessagingComponentConverter
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/components-starter/camel-atomix-starter/src/main/resources/META-INF/spring.provides b/components-starter/camel-atomix-starter/src/main/resources/META-INF/spring.provides
deleted file mode 100644
index 26745eb..0000000
--- a/components-starter/camel-atomix-starter/src/main/resources/META-INF/spring.provides
+++ /dev/null
@@ -1,17 +0,0 @@
-## ---------------------------------------------------------------------------
-## Licensed to the Apache Software Foundation (ASF) under one or more
-## contributor license agreements.  See the NOTICE file distributed with
-## this work for additional information regarding copyright ownership.
-## The ASF licenses this file to You under the Apache License, Version 2.0
-## (the "License"); you may not use this file except in compliance with
-## the License.  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-## Unless required by applicable law or agreed to in writing, software
-## distributed under the License is distributed on an "AS IS" BASIS,
-## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-## See the License for the specific language governing permissions and
-## limitations under the License.
-## ---------------------------------------------------------------------------
-provides: camel-atomix
diff --git a/components-starter/pom.xml b/components-starter/pom.xml
index afb30d5..f344d31 100644
--- a/components-starter/pom.xml
+++ b/components-starter/pom.xml
@@ -122,7 +122,6 @@
     <module>camel-atmos-starter</module>
     <module>camel-atmosphere-websocket-starter</module>
     <module>camel-atom-starter</module>
-    <module>camel-atomix-starter</module>
     <module>camel-avro-rpc-starter</module>
     <module>camel-avro-starter</module>
     <module>camel-aws-secrets-manager-starter</module>
diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAtomixTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAtomixTest.java
deleted file mode 100644
index c5a7d30..0000000
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAtomixTest.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.itest.springboot;
-
-import org.apache.camel.itest.springboot.util.ArquillianPackager;
-import org.jboss.arquillian.container.test.api.Deployment;
-import org.jboss.arquillian.junit5.ArquillianExtension;
-import org.jboss.shrinkwrap.api.Archive;
-import org.junit.jupiter.api.Test;
-import org.junit.jupiter.api.extension.ExtendWith;
-
-
-@ExtendWith(ArquillianExtension.class)
-public class CamelAtomixTest extends AbstractSpringBootTestSupport {
-
-    @Deployment
-    public static Archive<?> createSpringBootPackage() throws Exception {
-        return ArquillianPackager.springBootPackage(createTestConfig());
-    }
-
-    public static ITestConfig createTestConfig() {
-        return new ITestConfigBuilder()
-                .module(inferModuleName(CamelAtomixTest.class))
-                .build();
-    }
-
-    @Test
-    public void componentTests() throws Exception {
-        this.runComponentTest(config, "atomix-map");
-        // dont run unit tests as there are too many
-        // this.runModuleUnitTestsIfEnabled(config);
-    }
-
-
-}
diff --git a/tooling/camel-spring-boot-bom/pom.xml b/tooling/camel-spring-boot-bom/pom.xml
index 3173bd4..d65558a 100644
--- a/tooling/camel-spring-boot-bom/pom.xml
+++ b/tooling/camel-spring-boot-bom/pom.xml
@@ -100,11 +100,6 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel.springboot</groupId>
-        <artifactId>camel-atomix-starter</artifactId>
-        <version>${project.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.apache.camel.springboot</groupId>
         <artifactId>camel-avro-rpc-starter</artifactId>
         <version>${project.version}</version>
       </dependency>
diff --git a/tooling/camel-spring-boot-dependencies/pom.xml b/tooling/camel-spring-boot-dependencies/pom.xml
index 7b7e303..b5ef8d6 100644
--- a/tooling/camel-spring-boot-dependencies/pom.xml
+++ b/tooling/camel-spring-boot-dependencies/pom.xml
@@ -288,11 +288,6 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel.springboot</groupId>
-        <artifactId>camel-atomix-starter</artifactId>
-        <version>${project.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.apache.camel.springboot</groupId>
         <artifactId>camel-avro-rpc-starter</artifactId>
         <version>${project.version}</version>
       </dependency>
@@ -2309,16 +2304,6 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel</groupId>
-        <artifactId>camel-beanio</artifactId>
-        <version>3.17.0-SNAPSHOT</version>
-      </dependency>
-      <dependency>
-        <groupId>org.apache.camel</groupId>
-        <artifactId>camel-beanstalk</artifactId>
-        <version>3.17.0-SNAPSHOT</version>
-      </dependency>
-      <dependency>
-        <groupId>org.apache.camel</groupId>
         <artifactId>camel-bindy</artifactId>
         <version>3.17.0-SNAPSHOT</version>
       </dependency>