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/02 12:18:10 UTC

[camel] branch regen_bot updated (1b349b5 -> 8adbb77)

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 1b349b5  Chapter for Migration and upgrade guides
     add 8adbb77  Migrates camel-nsq to the new test infra (#4710)

No new revisions were added by this update.

Summary of changes:
 components/camel-nsq/pom.xml                       |  20 +++-
 .../apache/camel/component/nsq/NsqTestSupport.java |  50 ++--------
 test-infra/camel-test-infra-nsq/pom.xml            |  60 ++++++++++++
 .../src/main/resources/META-INF/MANIFEST.MF        |   0
 .../camel/test/infra/nsq/common/NsqProperties.java |  27 ++++++
 .../nsq/services/NsqLocalContainerService.java     | 102 +++++++++++++++++++++
 .../test/infra/nsq/services/NsqRemoteService.java  |  47 ++++++++++
 .../camel/test/infra/nsq/services/NsqService.java  |  41 +++++++++
 .../test/infra/nsq/services/NsqServiceFactory.java |  43 +++++++++
 test-infra/pom.xml                                 |   1 +
 10 files changed, 346 insertions(+), 45 deletions(-)
 create mode 100644 test-infra/camel-test-infra-nsq/pom.xml
 copy {tooling/maven/camel-resources-plugin => test-infra/camel-test-infra-nsq}/src/main/resources/META-INF/MANIFEST.MF (100%)
 create mode 100644 test-infra/camel-test-infra-nsq/src/test/java/org/apache/camel/test/infra/nsq/common/NsqProperties.java
 create mode 100644 test-infra/camel-test-infra-nsq/src/test/java/org/apache/camel/test/infra/nsq/services/NsqLocalContainerService.java
 create mode 100644 test-infra/camel-test-infra-nsq/src/test/java/org/apache/camel/test/infra/nsq/services/NsqRemoteService.java
 create mode 100644 test-infra/camel-test-infra-nsq/src/test/java/org/apache/camel/test/infra/nsq/services/NsqService.java
 create mode 100644 test-infra/camel-test-infra-nsq/src/test/java/org/apache/camel/test/infra/nsq/services/NsqServiceFactory.java