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 2ada99a Prepare for next version add d69d158 [OPENLDAP-CONTAINER] Run IT tests on Docker add 13320cf Moved to 3.11.0-SNAPSHOT also the LDAP Test-Infra add ab42273 Fixed indentation in test-infra POM No new revisions were added by this update. Summary of changes: components/camel-ldif/pom.xml | 14 ++ .../apache/camel/component/ldif/LdifRouteIT.java | 215 ++++++++++++--------- .../camel/component/ldif/LdifTestSupport.java | 40 ++++ .../apache/camel/component/ldif/AddDuplicate.ldif | 2 +- .../camel/component/ldif/AddDuplicateSetup.ldif | 4 +- .../org/apache/camel/component/ldif/AddOne.ldif | 4 +- .../org/apache/camel/component/ldif/DeleteOne.ldif | 3 +- .../camel/component/ldif/DeleteOneSetup.ldif | 4 +- .../org/apache/camel/component/ldif/ModDn.ldif | 4 +- .../apache/camel/component/ldif/ModDnSetup.ldif | 6 +- .../org/apache/camel/component/ldif/ModRdn.ldif | 2 +- .../apache/camel/component/ldif/ModRdnSetup.ldif | 4 +- .../org/apache/camel/component/ldif/Modify.ldif | 2 +- .../apache/camel/component/ldif/ModifySetup.ldif | 4 +- test-infra/camel-test-infra-openldap/pom.xml | 58 ++++++ .../src/main/resources/META-INF/MANIFEST.MF | 0 .../infra/openldap/common/OpenldapProperties.java | 29 +++ .../services/OpenldapLocalContainerService.java | 117 +++++++++++ .../openldap/services/OpenldapRemoteService.java | 66 +++++++ .../infra/openldap/services/OpenldapService.java | 44 +++++ .../openldap/services/OpenldapServiceFactory.java | 36 ++++ test-infra/pom.xml | 1 + 22 files changed, 544 insertions(+), 115 deletions(-) create mode 100644 components/camel-ldif/src/test/java/org/apache/camel/component/ldif/LdifTestSupport.java create mode 100644 test-infra/camel-test-infra-openldap/pom.xml copy {tooling/maven/camel-resources-plugin => test-infra/camel-test-infra-openldap}/src/main/resources/META-INF/MANIFEST.MF (100%) create mode 100644 test-infra/camel-test-infra-openldap/src/test/java/org/apache/camel/test/infra/openldap/common/OpenldapProperties.java create mode 100644 test-infra/camel-test-infra-openldap/src/test/java/org/apache/camel/test/infra/openldap/services/OpenldapLocalContainerService.java create mode 100644 test-infra/camel-test-infra-openldap/src/test/java/org/apache/camel/test/infra/openldap/services/OpenldapRemoteService.java create mode 100644 test-infra/camel-test-infra-openldap/src/test/java/org/apache/camel/test/infra/openldap/services/OpenldapService.java create mode 100644 test-infra/camel-test-infra-openldap/src/test/java/org/apache/camel/test/infra/openldap/services/OpenldapServiceFactory.java