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/11/29 16:30:57 UTC

[camel] branch regen_bot updated (10ea77c -> 0778b5d)

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 10ea77c  Upgrade jSMPP to version 2.3.11
     add 0778b5d  Migrates camel-hbase to the new test infra (#4700)

No new revisions were added by this update.

Summary of changes:
 components/camel-hbase/pom.xml                     | 50 +++++--------
 .../component/hbase/CamelHBaseTestSupport.java     | 35 ++-------
 .../idempotent/HBaseIdempotentRepositoryTest.java  |  2 +-
 test-infra/camel-test-infra-hbase/pom.xml          | 85 ++++++++++++++++++++++
 .../src/main/resources/META-INF/MANIFEST.MF        |  0
 .../test/infra/hbase/common/HBaseProperties.java   | 25 +++++++
 .../test/infra/hbase/services}/HBaseContainer.java |  2 +-
 .../hbase/services/HBaseLocalContainerService.java | 61 ++++++++++++++++
 .../test/infra/hbase/services/HBaseService.java    | 41 +++++++++++
 .../infra/hbase/services/HBaseServiceFactory.java  | 39 ++++++++++
 test-infra/pom.xml                                 |  1 +
 11 files changed, 279 insertions(+), 62 deletions(-)
 create mode 100644 test-infra/camel-test-infra-hbase/pom.xml
 copy {tooling/maven/camel-resources-plugin => test-infra/camel-test-infra-hbase}/src/main/resources/META-INF/MANIFEST.MF (100%)
 create mode 100644 test-infra/camel-test-infra-hbase/src/test/java/org/apache/camel/test/infra/hbase/common/HBaseProperties.java
 rename {components/camel-hbase/src/test/java/org/apache/camel/component/hbase => test-infra/camel-test-infra-hbase/src/test/java/org/apache/camel/test/infra/hbase/services}/HBaseContainer.java (97%)
 create mode 100644 test-infra/camel-test-infra-hbase/src/test/java/org/apache/camel/test/infra/hbase/services/HBaseLocalContainerService.java
 create mode 100644 test-infra/camel-test-infra-hbase/src/test/java/org/apache/camel/test/infra/hbase/services/HBaseService.java
 create mode 100644 test-infra/camel-test-infra-hbase/src/test/java/org/apache/camel/test/infra/hbase/services/HBaseServiceFactory.java