This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch automatic-periodic-sync in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.
omit 7f89267 [create-pull-request] automated change add c9ab9b5 [create-pull-request] automated change add aaaaa14 Regen add 3ecf47e CAMEL-16003: camel-spring-rabbitmq - New component using spring client add d9313e2 Regen add ef6a5ba Polished add 2ac9233 CAMEL-16003: camel-spring-rabbitmq - New component using spring client add 9b0373a CAMEL-16003: camel-spring-rabbitmq - New component using spring client This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (7f89267) \ N -- N -- N refs/heads/automatic-periodic-sync (9b0373a) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .../camel/springboot/catalog/components.properties | 1 + .../springboot/catalog/components/rabbitmq.json | 2 +- .../catalog/components/spring-rabbitmq.json | 74 +++++ components-starter/README.adoc | 4 +- .../pom.xml | 7 +- .../src/main/docs/spring-rabbitmq-starter.adoc | 49 +++ .../RabbitMQComponentAutoConfiguration.java | 8 +- .../springboot/RabbitMQComponentConfiguration.java | 333 +++++++++++++++++++++ .../springboot/RabbitMQComponentConverter.java} | 24 +- .../src/main/resources/META-INF/LICENSE.txt | 0 .../src/main/resources/META-INF/NOTICE.txt | 0 .../src/main/resources/META-INF/spring.factories | 2 +- .../src/main/resources/META-INF/spring.provides | 2 +- components-starter/pom.xml | 1 + docs/modules/ROOT/pages/list.adoc | 4 +- .../ROOT/pages/spring-rabbitmq-starter.adoc | 49 +++ tooling/camel-spring-boot-bom/pom.xml | 5 + tooling/camel-spring-boot-dependencies/pom.xml | 10 + 18 files changed, 553 insertions(+), 22 deletions(-) create mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/spring-rabbitmq.json copy components-starter/{camel-vm-starter => camel-spring-rabbitmq-starter}/pom.xml (91%) create mode 100644 components-starter/camel-spring-rabbitmq-starter/src/main/docs/spring-rabbitmq-starter.adoc copy components-starter/{camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq => camel-spring-rabbitmq-starter/src/main/java/org/apache/camel/component/springrabbit}/springboot/RabbitMQComponentAutoConfiguration.java (94%) create mode 100644 components-starter/camel-spring-rabbitmq-starter/src/main/java/org/apache/camel/component/springrabbit/springboot/RabbitMQComponentConfiguration.java copy components-starter/{camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentConverter.java => camel-spring-rabbitmq-starter/src/main/java/org/apache/camel/component/springrabbit/springboot/RabbitMQComponentConverter.java} (55%) copy {tooling/camel-spring-boot-docs-maven-plugin => components-starter/camel-spring-rabbitmq-starter}/src/main/resources/META-INF/LICENSE.txt (100%) copy {tooling/camel-spring-boot-docs-maven-plugin => components-starter/camel-spring-rabbitmq-starter}/src/main/resources/META-INF/NOTICE.txt (100%) copy components-starter/{camel-chatscript-starter => camel-spring-rabbitmq-starter}/src/main/resources/META-INF/spring.factories (94%) copy components-starter/{camel-ahc-ws-starter => camel-spring-rabbitmq-starter}/src/main/resources/META-INF/spring.provides (96%) create mode 100644 docs/modules/ROOT/pages/spring-rabbitmq-starter.adoc