This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel.git.
from f8832c8 Remove custom Identity classes for RSA/DSA signing from camel-ftp + improve security testing in general new 9191770 Implementing PostgreSQL Replication Slot consumer Camel component. new 61a9c8c Regen 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: apache-camel/pom.xml | 10 + apache-camel/src/main/descriptors/common-bin.xml | 2 + bom/camel-bom/pom.xml | 10 + components/camel-pg-replication-slot/pom.xml | 79 +++++++ .../main/docs/pg-replication-slot-component.adoc | 162 +++++++++++++ .../slot/PgReplicationSlotComponent.java | 42 ++++ .../slot/PgReplicationSlotConsumer.java | 249 ++++++++++++++++++++ .../slot/PgReplicationSlotEndpoint.java | 253 +++++++++++++++++++++ .../slot/PgReplicationSlotEndpointTest.java | 80 +++++++ .../PgReplicationSlotIntegrationTest.java | 127 +++++++++++ .../src/test/resources/log4j2.properties | 28 +++ .../src/test/resources/test-options.properties | 35 +++ components/pom.xml | 1 + components/readme.adoc | 5 +- .../PgReplicationSlotEndpointBuilderFactory.java | 253 +++++++++++++++++++++ docs/components/modules/ROOT/nav.adoc | 1 + .../ROOT/pages/pg-replication-slot-component.adoc | 162 +++++++++++++ parent/pom.xml | 11 + .../karaf/features/src/main/resources/features.xml | 6 + .../camel-pg-replication-slot-starter/pom.xml | 53 +++++ ...gReplicationSlotComponentAutoConfiguration.java | 129 +++++++++++ .../PgReplicationSlotComponentConfiguration.java | 67 ++++++ .../src/main/resources/META-INF/LICENSE.txt | 0 .../src/main/resources/META-INF/NOTICE.txt | 0 .../additional-spring-configuration-metadata.json | 10 + .../src/main/resources/META-INF/spring.factories | 19 ++ .../src/main/resources/META-INF/spring.provides | 17 ++ platforms/spring-boot/components-starter/pom.xml | 1 + .../camel-spring-boot-dependencies/pom.xml | 10 + .../itest/karaf/CamelPgReplicationSlotTest.java | 34 +++ .../springboot/CamelPgReplicationSlotTest.java | 49 ++++ 31 files changed, 1904 insertions(+), 1 deletion(-) create mode 100644 components/camel-pg-replication-slot/pom.xml create mode 100644 components/camel-pg-replication-slot/src/main/docs/pg-replication-slot-component.adoc create mode 100644 components/camel-pg-replication-slot/src/main/java/org/apache/camel/component/pg/replication/slot/PgReplicationSlotComponent.java create mode 100644 components/camel-pg-replication-slot/src/main/java/org/apache/camel/component/pg/replication/slot/PgReplicationSlotConsumer.java create mode 100644 components/camel-pg-replication-slot/src/main/java/org/apache/camel/component/pg/replication/slot/PgReplicationSlotEndpoint.java create mode 100644 components/camel-pg-replication-slot/src/test/java/org/apache/camel/component/pg/replication/slot/PgReplicationSlotEndpointTest.java create mode 100644 components/camel-pg-replication-slot/src/test/java/org/apache/camel/component/pg/replication/slot/integration/PgReplicationSlotIntegrationTest.java create mode 100644 components/camel-pg-replication-slot/src/test/resources/log4j2.properties create mode 100644 components/camel-pg-replication-slot/src/test/resources/test-options.properties create mode 100644 core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/PgReplicationSlotEndpointBuilderFactory.java create mode 100644 docs/components/modules/ROOT/pages/pg-replication-slot-component.adoc create mode 100644 platforms/spring-boot/components-starter/camel-pg-replication-slot-starter/pom.xml create mode 100644 platforms/spring-boot/components-starter/camel-pg-replication-slot-starter/src/main/java/org/apache/camel/component/pg/replication/slot/springboot/PgReplicationSlotComponentAutoConfiguration.java create mode 100644 platforms/spring-boot/components-starter/camel-pg-replication-slot-starter/src/main/java/org/apache/camel/component/pg/replication/slot/springboot/PgReplicationSlotComponentConfiguration.java copy {tooling/maven/camel-package-maven-plugin => platforms/spring-boot/components-starter/camel-pg-replication-slot-starter}/src/main/resources/META-INF/LICENSE.txt (100%) copy {tooling/maven/camel-package-maven-plugin => platforms/spring-boot/components-starter/camel-pg-replication-slot-starter}/src/main/resources/META-INF/NOTICE.txt (100%) create mode 100644 platforms/spring-boot/components-starter/camel-pg-replication-slot-starter/src/main/resources/META-INF/additional-spring-configuration-metadata.json create mode 100644 platforms/spring-boot/components-starter/camel-pg-replication-slot-starter/src/main/resources/META-INF/spring.factories create mode 100644 platforms/spring-boot/components-starter/camel-pg-replication-slot-starter/src/main/resources/META-INF/spring.provides create mode 100644 tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelPgReplicationSlotTest.java create mode 100644 tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelPgReplicationSlotTest.java