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

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


    from f6a3096400d CAMEL-22290, CAMEL-22289: Remove deprecated camel-cloud 
and serviceCall EIP
     new 475c1f5b778 Revert "CAMEL-22290, CAMEL-22289: Remove deprecated 
camel-cloud and serviceCall EIP"
     new 967cc33b6d3 CAMEL-22290, CAMEL-22289: Remove deprecated camel-cloud 
and serviceCall EIP

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


Summary of changes:
 .../pom.xml                                        |  11 +-
 .../src/main/docs/consul-cluster-service.json      | 185 +++++++++++++++++
 .../ConsulClusterServiceAutoConfiguration.java     |  68 +++++++
 .../cluster/ConsulClusterServiceConfiguration.java | 220 +++++++++++++++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   2 +-
 .../ConsulClusterServiceAutoConfigurationTest.java |  67 +++++++
 .../src/test/resources/logback.xml                 |   2 +-
 components-starter/camel-consul-starter/pom.xml    |  72 ++++++-
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   1 +
 components-starter/camel-dns-starter/pom.xml       |   3 +-
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   3 +-
 .../pom.xml                                        |  11 +-
 .../src/main/docs/file-cluster-service.json        |  76 +++++++
 .../FileLockClusterServiceAutoConfiguration.java   |  63 ++++++
 .../FileLockClusterServiceConfiguration.java       | 167 ++++++++++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   2 +-
 .../FileClusterServiceAutoConfigurationTest.java   |  68 +++++++
 .../src/test/resources/logback.xml                 |   2 +-
 .../pom.xml                                        |  10 +-
 .../src/main/docs/infinispan-cluster-service.json  | 105 ++++++++++
 ...ispanRemoteClusterServiceAutoConfiguration.java |  55 ++++++
 ...nfinispanRemoteClusterServiceConfiguration.java | 169 ++++++++++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   2 +-
 ...mbeddedClusterServiceAutoConfigurationTest.java |  68 +++++++
 .../src/test/resources/logback.xml                 |   2 +-
 .../pom.xml                                        |  10 +-
 .../main/docs/jgroups-raft-cluster-service.json    |  46 +++++
 ...JGroupsRaftClusterServiceAutoConfiguration.java |  55 ++++++
 .../JGroupsRaftClusterServiceConfiguration.java    |  88 +++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   2 +-
 ...upsRaftClusterServiceAutoConfigurationTest.java |  69 +++++++
 .../src/test/resources/logback.xml                 |   2 +-
 .../pom.xml                                        |  11 +-
 .../src/main/docs/kubernetes-cluster-service.json  | 100 ++++++++++
 .../KubernetesClusterServiceAutoConfiguration.java |  64 ++++++
 .../KubernetesClusterServiceConfiguration.java     | 208 +++++++++++++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   2 +-
 ...ernetesClusterServiceAutoConfigurationTest.java |  95 +++++++++
 .../src/test/resources/logback.xml                 |   2 +-
 .../camel-kubernetes-starter/pom.xml               |   8 +-
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   6 +-
 .../pom.xml                                        |  23 ++-
 .../src/main/docs/zookeeper-cluster-service.json   | 141 +++++++++++++
 .../ZooKeeperClusterServiceAutoConfiguration.java  |  65 ++++++
 .../ZooKeeperClusterServiceConfiguration.java      | 144 ++++++++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   2 +-
 .../cluster/ZooKeeperClusterServiceTest.java       |  91 +++++++++
 .../src/test/resources/logback.xml                 |   2 +-
 components-starter/camel-zookeeper-starter/pom.xml |   3 +-
 ...rk.boot.autoconfigure.AutoConfiguration.imports |   3 +-
 components-starter/pom.xml                         |   6 +
 tooling/camel-spring-boot-bom/pom.xml              |  30 +++
 tooling/camel-spring-boot-dependencies/pom.xml     |  30 +++
 65 files changed, 2681 insertions(+), 61 deletions(-)
 copy components-starter/{camel-azure-cosmosdb-starter => 
camel-consul-cluster-service-starter}/pom.xml (84%)
 create mode 100644 
components-starter/camel-consul-cluster-service-starter/src/main/docs/consul-cluster-service.json
 create mode 100644 
components-starter/camel-consul-cluster-service-starter/src/main/java/org/apache/camel/component/consul/springboot/cluster/ConsulClusterServiceAutoConfiguration.java
 create mode 100644 
components-starter/camel-consul-cluster-service-starter/src/main/java/org/apache/camel/component/consul/springboot/cluster/ConsulClusterServiceConfiguration.java
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-consul-cluster-service-starter}/src/main/resources/META-INF/LICENSE.txt
 (100%)
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-consul-cluster-service-starter}/src/main/resources/META-INF/NOTICE.txt
 (100%)
 copy components-starter/{camel-asn1-starter => 
camel-consul-cluster-service-starter}/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
 (91%)
 create mode 100644 
components-starter/camel-consul-cluster-service-starter/src/test/java/org/apache/camel/component/consul/springboot/cluster/ConsulClusterServiceAutoConfigurationTest.java
 copy {core/camel-spring-boot-xml => 
components-starter/camel-consul-cluster-service-starter}/src/test/resources/logback.xml
 (94%)
 copy components-starter/{camel-arangodb-starter => 
camel-file-cluster-service-starter}/pom.xml (84%)
 create mode 100644 
components-starter/camel-file-cluster-service-starter/src/main/docs/file-cluster-service.json
 create mode 100644 
components-starter/camel-file-cluster-service-starter/src/main/java/org/apache/camel/component/file/springboot/cluster/FileLockClusterServiceAutoConfiguration.java
 create mode 100644 
components-starter/camel-file-cluster-service-starter/src/main/java/org/apache/camel/component/file/springboot/cluster/FileLockClusterServiceConfiguration.java
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-file-cluster-service-starter}/src/main/resources/META-INF/LICENSE.txt
 (100%)
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-file-cluster-service-starter}/src/main/resources/META-INF/NOTICE.txt
 (100%)
 copy components-starter/{camel-asn1-starter => 
camel-file-cluster-service-starter}/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
 (91%)
 create mode 100644 
components-starter/camel-file-cluster-service-starter/src/test/java/org/apache/camel/component/file/springboot/cluster/FileClusterServiceAutoConfigurationTest.java
 copy {core/camel-spring-boot-xml => 
components-starter/camel-file-cluster-service-starter}/src/test/resources/logback.xml
 (94%)
 copy components-starter/{camel-infinispan-embedded-starter => 
camel-infinispan-cluster-service-starter}/pom.xml (86%)
 create mode 100644 
components-starter/camel-infinispan-cluster-service-starter/src/main/docs/infinispan-cluster-service.json
 create mode 100644 
components-starter/camel-infinispan-cluster-service-starter/src/main/java/org/apache/camel/component/infinispan/remote/springboot/cluster/InfinispanRemoteClusterServiceAutoConfiguration.java
 create mode 100644 
components-starter/camel-infinispan-cluster-service-starter/src/main/java/org/apache/camel/component/infinispan/remote/springboot/cluster/InfinispanRemoteClusterServiceConfiguration.java
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-infinispan-cluster-service-starter}/src/main/resources/META-INF/LICENSE.txt
 (100%)
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-infinispan-cluster-service-starter}/src/main/resources/META-INF/NOTICE.txt
 (100%)
 copy components-starter/{camel-asn1-starter => 
camel-infinispan-cluster-service-starter}/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
 (89%)
 create mode 100644 
components-starter/camel-infinispan-cluster-service-starter/src/test/java/org/apache/camel/component/infinispan/remote/springboot/cluster/InfinispanEmbeddedClusterServiceAutoConfigurationTest.java
 copy {core/camel-spring-boot-xml => 
components-starter/camel-infinispan-cluster-service-starter}/src/test/resources/logback.xml
 (94%)
 copy components-starter/{camel-huaweicloud-imagerecognition-starter => 
camel-jgroups-raft-cluster-service-starter}/pom.xml (83%)
 create mode 100644 
components-starter/camel-jgroups-raft-cluster-service-starter/src/main/docs/jgroups-raft-cluster-service.json
 create mode 100644 
components-starter/camel-jgroups-raft-cluster-service-starter/src/main/java/org/apache/camel/component/jgroups/raft/springboot/cluster/JGroupsRaftClusterServiceAutoConfiguration.java
 create mode 100644 
components-starter/camel-jgroups-raft-cluster-service-starter/src/main/java/org/apache/camel/component/jgroups/raft/springboot/cluster/JGroupsRaftClusterServiceConfiguration.java
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-jgroups-raft-cluster-service-starter}/src/main/resources/META-INF/LICENSE.txt
 (100%)
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-jgroups-raft-cluster-service-starter}/src/main/resources/META-INF/NOTICE.txt
 (100%)
 copy components-starter/{camel-asn1-starter => 
camel-jgroups-raft-cluster-service-starter}/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
 (90%)
 create mode 100644 
components-starter/camel-jgroups-raft-cluster-service-starter/src/test/java/org/apache/camel/component/jgroups/raft/springboot/cluster/JGroupsRaftClusterServiceAutoConfigurationTest.java
 copy {core/camel-spring-boot-xml => 
components-starter/camel-jgroups-raft-cluster-service-starter}/src/test/resources/logback.xml
 (94%)
 copy components-starter/{camel-azure-storage-blob-starter => 
camel-kubernetes-cluster-service-starter}/pom.xml (85%)
 create mode 100644 
components-starter/camel-kubernetes-cluster-service-starter/src/main/docs/kubernetes-cluster-service.json
 create mode 100644 
components-starter/camel-kubernetes-cluster-service-starter/src/main/java/org/apache/camel/component/kubernetes/springboot/cluster/KubernetesClusterServiceAutoConfiguration.java
 create mode 100644 
components-starter/camel-kubernetes-cluster-service-starter/src/main/java/org/apache/camel/component/kubernetes/springboot/cluster/KubernetesClusterServiceConfiguration.java
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-kubernetes-cluster-service-starter}/src/main/resources/META-INF/LICENSE.txt
 (100%)
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-kubernetes-cluster-service-starter}/src/main/resources/META-INF/NOTICE.txt
 (100%)
 copy components-starter/{camel-asn1-starter => 
camel-kubernetes-cluster-service-starter}/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
 (90%)
 create mode 100644 
components-starter/camel-kubernetes-cluster-service-starter/src/test/java/org/apache/camel/component/kubernetes/springboot/test/cluster/KubernetesClusterServiceAutoConfigurationTest.java
 copy {core/camel-spring-boot-xml => 
components-starter/camel-kubernetes-cluster-service-starter}/src/test/resources/logback.xml
 (94%)
 copy components-starter/{camel-activemq-starter => 
camel-zookeeper-cluster-service-starter}/pom.xml (76%)
 create mode 100644 
components-starter/camel-zookeeper-cluster-service-starter/src/main/docs/zookeeper-cluster-service.json
 create mode 100644 
components-starter/camel-zookeeper-cluster-service-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/cluster/ZooKeeperClusterServiceAutoConfiguration.java
 create mode 100644 
components-starter/camel-zookeeper-cluster-service-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/cluster/ZooKeeperClusterServiceConfiguration.java
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-zookeeper-cluster-service-starter}/src/main/resources/META-INF/LICENSE.txt
 (100%)
 copy {archetypes/camel-archetype-spring-boot => 
components-starter/camel-zookeeper-cluster-service-starter}/src/main/resources/META-INF/NOTICE.txt
 (100%)
 copy components-starter/{camel-asn1-starter => 
camel-zookeeper-cluster-service-starter}/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
 (90%)
 create mode 100644 
components-starter/camel-zookeeper-cluster-service-starter/src/test/java/org/apache/camel/component/zookeeper/springboot/cluster/ZooKeeperClusterServiceTest.java
 copy {core/camel-spring-boot-xml => 
components-starter/camel-zookeeper-cluster-service-starter}/src/test/resources/logback.xml
 (94%)

Reply via email to