You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/08/28 19:54:54 UTC

[camel-quarkus] branch master updated (121e6c1 -> 1a4283a)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


    from 121e6c1  Merge pull request #160 from ppalaga/190823-itest-stub-generator
     add b6370d4  camel-zipfile quarkus extension
     new 1a4283a  Merge pull request #165 from apache/zipfile

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../ROOT/pages/_partials/component-extensions.adoc |  1 +
 extensions/pom.xml                                 |  1 +
 .../zipfile/deployment/pom.xml                     | 16 ++++----
 .../zipfile/deployment/ZipfileProcessor.java       |  6 +--
 .../parent-pom.xml => extensions/zipfile/pom.xml   |  6 +--
 extensions/{log => zipfile}/runtime/pom.xml        | 14 +++----
 integration-tests/pom.xml                          |  1 +
 .../zipfile/pom.xml                                | 12 ++++--
 .../component/zipfile/it/ZipfileResource.java      | 34 ++++++----------
 .../component/zipfile/it/ZipfileRouteBuilder.java  |  6 ++-
 .../quarkus/component/zipfile/it/ZipfileIT.java    |  8 ++++
 .../quarkus/component/zipfile/it/ZipfileTest.java  | 46 ++++++++++++++++++++++
 poms/bom-deployment/pom.xml                        |  5 +++
 poms/bom/pom.xml                                   | 10 +++++
 14 files changed, 116 insertions(+), 50 deletions(-)
 copy build/create-extension-templates/deployment-pom.xml => extensions/zipfile/deployment/pom.xml (78%)
 copy build/create-extension-templates/Processor.java => extensions/zipfile/deployment/src/main/java/org/apache/camel/quarkus/component/zipfile/deployment/ZipfileProcessor.java (58%)
 copy build/create-extension-templates/parent-pom.xml => extensions/zipfile/pom.xml (82%)
 copy extensions/{log => zipfile}/runtime/pom.xml (80%)
 copy build/create-extension-templates/integration-test-pom.xml => integration-tests/zipfile/pom.xml (90%)
 copy build/create-extension-templates/TestResource.java => integration-tests/zipfile/src/main/java/org/apache/camel/quarkus/component/zipfile/it/ZipfileResource.java (61%)
 copy build/create-extension-templates/TestRouteBuilder.java => integration-tests/zipfile/src/main/java/org/apache/camel/quarkus/component/zipfile/it/ZipfileRouteBuilder.java (84%)
 create mode 100644 integration-tests/zipfile/src/test/java/org/apache/camel/quarkus/component/zipfile/it/ZipfileIT.java
 create mode 100644 integration-tests/zipfile/src/test/java/org/apache/camel/quarkus/component/zipfile/it/ZipfileTest.java


[camel-quarkus] 01/01: Merge pull request #165 from apache/zipfile

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 1a4283a459905795d9deb51d86428edef309e1cb
Merge: 121e6c1 b6370d4
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Aug 28 21:54:49 2019 +0200

    Merge pull request #165 from apache/zipfile
    
    camel-zipfile quarkus extension

 .../ROOT/pages/_partials/component-extensions.adoc |   1 +
 extensions/pom.xml                                 |   1 +
 extensions/zipfile/deployment/pom.xml              |  57 ++++++++++
 .../zipfile/deployment/ZipfileProcessor.java       |  15 +++
 extensions/zipfile/pom.xml                         |  21 ++++
 extensions/zipfile/runtime/pom.xml                 |  60 +++++++++++
 integration-tests/pom.xml                          |   1 +
 integration-tests/zipfile/pom.xml                  | 118 +++++++++++++++++++++
 .../component/zipfile/it/ZipfileResource.java      |  57 ++++++++++
 .../component/zipfile/it/ZipfileRouteBuilder.java  |  29 +++++
 .../quarkus/component/zipfile/it/ZipfileIT.java    |   8 ++
 .../quarkus/component/zipfile/it/ZipfileTest.java  |  46 ++++++++
 poms/bom-deployment/pom.xml                        |   5 +
 poms/bom/pom.xml                                   |  10 ++
 14 files changed, 429 insertions(+)