This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot in repository https://gitbox.apache.org/repos/asf/camel.git.
from d8efa18 Sync deps add a12bb70 Migrates camel-pg-replication-slot to the new test infra (#4724) No new revisions were added by this update. Summary of changes: components/camel-pg-replication-slot/pom.xml | 14 +++- .../integration/PgReplicationSlotCamelTest.java | 15 ++-- .../slot/integration/PgReplicationTestSupport.java | 52 +++--------- test-infra/camel-test-infra-postgres/pom.xml | 66 +++++++++++++++ .../src/main/resources/META-INF/MANIFEST.MF | 0 .../infra/postgres/common/PostgresProperties.java | 32 ++++++++ .../services/PostgresLocalContainerService.java | 94 ++++++++++++++++++++++ .../postgres/services/PostgresRemoteService.java | 68 ++++++++++++++++ .../infra/postgres/services/PostgresService.java | 48 +++++++++++ .../postgres/services/PostgresServiceFactory.java | 43 ++++++++++ test-infra/pom.xml | 1 + 11 files changed, 385 insertions(+), 48 deletions(-) create mode 100644 test-infra/camel-test-infra-postgres/pom.xml copy {tooling/maven/camel-resources-plugin => test-infra/camel-test-infra-postgres}/src/main/resources/META-INF/MANIFEST.MF (100%) create mode 100644 test-infra/camel-test-infra-postgres/src/test/java/org/apache/camel/test/infra/postgres/common/PostgresProperties.java create mode 100644 test-infra/camel-test-infra-postgres/src/test/java/org/apache/camel/test/infra/postgres/services/PostgresLocalContainerService.java create mode 100644 test-infra/camel-test-infra-postgres/src/test/java/org/apache/camel/test/infra/postgres/services/PostgresRemoteService.java create mode 100644 test-infra/camel-test-infra-postgres/src/test/java/org/apache/camel/test/infra/postgres/services/PostgresService.java create mode 100644 test-infra/camel-test-infra-postgres/src/test/java/org/apache/camel/test/infra/postgres/services/PostgresServiceFactory.java