You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2020/12/03 12:52:53 UTC

[camel] branch regen_bot updated (02d8376 -> 4e53f5b)

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 02d8376  Sync deps
     add 4e53f5b  Migrates camel-pulsar to the new test infra (#4715)

No new revisions were added by this update.

Summary of changes:
 components/camel-pulsar/pom.xml                    | 22 ++++--
 .../pulsar/PulsarConsumerAcknowledgementTest.java  | 36 ++++++++--
 .../pulsar/PulsarConsumerDeadLetterPolicyTest.java | 19 ++++-
 .../pulsar/PulsarConsumerReadCompactedTest.java    | 21 ++++--
 .../camel/component/pulsar/PulsarTestSupport.java  | 45 +++---------
 parent/pom.xml                                     |  5 ++
 test-infra/camel-test-infra-pulsar/pom.xml         | 65 +++++++++++++++++
 .../src/main/resources/META-INF/MANIFEST.MF        |  0
 .../test/infra/pulsar/common/PulsarProperties.java | 27 +++++++
 .../services/PulsarLocalContainerService.java      | 83 ++++++++++++++++++++++
 .../infra/pulsar/services/PulsarRemoteService.java | 47 ++++++++++++
 .../test/infra/pulsar/services/PulsarService.java  | 42 +++++++++++
 .../pulsar/services/PulsarServiceFactory.java      | 43 +++++++++++
 test-infra/pom.xml                                 |  1 +
 14 files changed, 402 insertions(+), 54 deletions(-)
 create mode 100644 test-infra/camel-test-infra-pulsar/pom.xml
 copy {tooling/maven/camel-resources-plugin => test-infra/camel-test-infra-pulsar}/src/main/resources/META-INF/MANIFEST.MF (100%)
 create mode 100644 test-infra/camel-test-infra-pulsar/src/test/java/org/apache/camel/test/infra/pulsar/common/PulsarProperties.java
 create mode 100644 test-infra/camel-test-infra-pulsar/src/test/java/org/apache/camel/test/infra/pulsar/services/PulsarLocalContainerService.java
 create mode 100644 test-infra/camel-test-infra-pulsar/src/test/java/org/apache/camel/test/infra/pulsar/services/PulsarRemoteService.java
 create mode 100644 test-infra/camel-test-infra-pulsar/src/test/java/org/apache/camel/test/infra/pulsar/services/PulsarService.java
 create mode 100644 test-infra/camel-test-infra-pulsar/src/test/java/org/apache/camel/test/infra/pulsar/services/PulsarServiceFactory.java