You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/04/07 14:11:06 UTC

[camel-quarkus] branch 4749/templated-route-support updated (7c9a956ba1 -> 9949399fdc)

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

nfilotto pushed a change to branch 4749/templated-route-support
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


 discard 7c9a956ba1 Ref #4749 - java-joor-dsl - Add templated route support to native mode
     add d330ecf840 Fix maven connection time out (#4740)
     add d07796411c Add GitHub actions directory to license-maven-plugin exclusions
     add 7897007041 Updated CHANGELOG.md
     add 6cd991a363 Update camel-quarkus-tika resource (#4754)
     add d557f5a75d Fix #4043 to group xml tests (#4753)
     add 9949399fdc Ref #4749 - java-joor-dsl - Add templated route support to native mode

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7c9a956ba1)
            \
             N -- N -- N   refs/heads/4749/templated-route-support (9949399fdc)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/camel-master-cron.yaml           |   2 +-
 .github/workflows/ci-build.yaml                    |   2 +-
 .github/workflows/pr-validate.yml                  |   2 +-
 .github/workflows/quarkus-master-cron.yaml         |   2 +-
 .mvn/maven.config                                  |   3 -
 CHANGELOG.md                                       |   3 +
 catalog/pom.xml                                    |  13 ++
 .../main/resources/META-INF/quarkus-extension.yaml |   1 +
 .../component/xslt/deployment/XsltProcessor.java   |   8 --
 integration-test-groups/pom.xml                    |   1 +
 integration-test-groups/xml/jvm/aggregate/pom.xml  | 135 +++++++++++++++++++++
 .../component/xml/it/XsltAggregateBuilder.java     |  15 ++-
 .../component/xml/it/XsltAggregateResource.java    |  54 +++++++++
 .../src/main/resources/application.properties      |   2 -
 .../src/main/resources/xslt/aggregate.xsl          |   0
 .../component/xml/it/XsltAggregateTest.java        |  23 +++-
 integration-test-groups/xml/jvm/bean/pom.xml       | 115 ++++++++++++++++++
 .../component/xml/it/XsltBeanProducers.java        |  36 +-----
 .../quarkus/component/xml/it/XsltBeanResource.java |  22 +++-
 .../src/main/resources/application.properties      |   3 +-
 .../main/resources/xslt/classpath-transform.xsl    |   0
 .../quarkus/component/xml/it/XsltBeanTest.java     |  43 +++++++
 integration-test-groups/xml/jvm/file/pom.xml       |  98 +++++++++++++++
 .../quarkus/component/xml/it/XsltFileResource.java |  49 ++++++++
 .../src/main/resources/application.properties      |   3 +-
 .../main/resources/xslt/classpath-transform.xsl    |   0
 .../quarkus/component/xml/it/XsltFileTest.java     |  43 +++++++
 integration-test-groups/xml/jvm/http/pom.xml       | 103 ++++++++++++++++
 .../quarkus/component/xml/it/XsltHttpResource.java |  26 +++-
 .../src/main/resources/application.properties      |   3 +-
 .../main/resources/xslt/classpath-transform.xsl    |   0
 .../component/xml/it/XmlHttpTestResource.java      |   2 +-
 .../quarkus/component/xml/it/XsltHttpTest.java     |  45 +++++++
 integration-test-groups/xml/jvm/ref/pom.xml        |  98 +++++++++++++++
 .../quarkus/component/xml/it/XsltRefProducers.java |  22 +++-
 .../quarkus/component/xml/it/XsltRefResource.java  |  22 +++-
 .../ref}/src/main/resources/application.properties |   3 +-
 .../main/resources/xslt/classpath-transform.xsl    |   0
 .../quarkus/component/xml/it/XsltRefTest.java      |  43 +++++++
 .../xml/native/classpath}/pom.xml                  |  63 +++-------
 .../component/xml/it/FunctionsConfiguration.java   |   0
 .../quarkus/component/xml/it/XsltProducers.java    |  25 +---
 .../quarkus/component/xml/it/XsltResource.java     |  53 +-------
 .../quarkus/component/xml/it/XsltRouteBuilder.java |  18 +--
 .../src/main/resources/application.properties      |   0
 .../src/main/resources/xslt/aggregate.xsl          |   0
 .../main/resources/xslt/classpath-transform.xsl    |   0
 .../src/main/resources/xslt/extension-function.xsl |   0
 .../src/main/resources/xslt/html-to-text.xsl       |   0
 .../src/main/resources/xslt/html-transform.xsl     |   0
 .../classpath}/src/main/resources/xslt/include.xsl |   0
 .../xslt/include_not_existing_resource.xsl         |   0
 .../src/main/resources/xslt/terminate.xsl          |   0
 .../camel/quarkus/component/xml/it/XsltIT.java     |   2 +-
 .../camel/quarkus/component/xml/it/XsltTest.java   |  33 +----
 .../native/classpath}/src/test/resources/test.html |   0
 integration-test-groups/{ => xml}/pom.xml          |  23 ++--
 integration-tests-jvm/pom.xml                      |   1 +
 .../xml-grouped}/.gitignore                        |   0
 .../xml-grouped}/pom.xml                           |  96 +++++++--------
 integration-tests/pom.xml                          |   2 +-
 .../{aws2-grouped => xml-grouped}/.gitignore       |   0
 integration-tests/{xml => xml-grouped}/pom.xml     | 100 +++++++--------
 pom.xml                                            |  20 +++
 tooling/scripts/test-categories.yaml               |   2 +-
 65 files changed, 1114 insertions(+), 369 deletions(-)
 delete mode 100644 .mvn/maven.config
 create mode 100644 integration-test-groups/xml/jvm/aggregate/pom.xml
 copy integration-tests/xml/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlIT.java => integration-test-groups/xml/jvm/aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateBuilder.java (62%)
 create mode 100644 integration-test-groups/xml/jvm/aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateResource.java
 copy {integration-tests/xml => integration-test-groups/xml/jvm/aggregate}/src/main/resources/application.properties (77%)
 copy {integration-tests/xml => integration-test-groups/xml/jvm/aggregate}/src/main/resources/xslt/aggregate.xsl (100%)
 copy integration-tests/xml/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlIT.java => integration-test-groups/xml/jvm/aggregate/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateTest.java (51%)
 create mode 100644 integration-test-groups/xml/jvm/bean/pom.xml
 copy integration-tests/xml/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltProducers.java => integration-test-groups/xml/jvm/bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanProducers.java (55%)
 copy integration-tests/xml/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlIT.java => integration-test-groups/xml/jvm/bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanResource.java (59%)
 copy {integration-tests/xml => integration-test-groups/xml/jvm/bean}/src/main/resources/application.properties (77%)
 copy {integration-tests/xml => integration-test-groups/xml/jvm/bean}/src/main/resources/xslt/classpath-transform.xsl (100%)
 create mode 100644 integration-test-groups/xml/jvm/bean/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltBeanTest.java
 create mode 100644 integration-test-groups/xml/jvm/file/pom.xml
 create mode 100644 integration-test-groups/xml/jvm/file/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltFileResource.java
 copy {integration-tests/xml => integration-test-groups/xml/jvm/file}/src/main/resources/application.properties (77%)
 copy {integration-tests/xml => integration-test-groups/xml/jvm/file}/src/main/resources/xslt/classpath-transform.xsl (100%)
 create mode 100644 integration-test-groups/xml/jvm/file/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltFileTest.java
 create mode 100644 integration-test-groups/xml/jvm/http/pom.xml
 copy integration-tests/xml/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlIT.java => integration-test-groups/xml/jvm/http/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltHttpResource.java (52%)
 copy {integration-tests/xml => integration-test-groups/xml/jvm/http}/src/main/resources/application.properties (77%)
 copy {integration-tests/xml => integration-test-groups/xml/jvm/http}/src/main/resources/xslt/classpath-transform.xsl (100%)
 rename integration-tests/xml/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlTestResource.java => integration-test-groups/xml/jvm/http/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlHttpTestResource.java (96%)
 create mode 100644 integration-test-groups/xml/jvm/http/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltHttpTest.java
 create mode 100644 integration-test-groups/xml/jvm/ref/pom.xml
 copy integration-tests/xml/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlIT.java => integration-test-groups/xml/jvm/ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefProducers.java (58%)
 copy integration-tests/xml/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlIT.java => integration-test-groups/xml/jvm/ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefResource.java (60%)
 copy {integration-tests/xml => integration-test-groups/xml/jvm/ref}/src/main/resources/application.properties (77%)
 copy {integration-tests/xml => integration-test-groups/xml/jvm/ref}/src/main/resources/xslt/classpath-transform.xsl (100%)
 create mode 100644 integration-test-groups/xml/jvm/ref/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltRefTest.java
 copy {integration-tests/xml => integration-test-groups/xml/native/classpath}/pom.xml (80%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/java/org/apache/camel/quarkus/component/xml/it/FunctionsConfiguration.java (100%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltProducers.java (76%)
 rename integration-tests/xml/src/main/java/org/apache/camel/quarkus/component/xml/it/XmlResource.java => integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltResource.java (73%)
 rename integration-tests/xml/src/main/java/org/apache/camel/quarkus/component/xml/it/XmlRouteBuilder.java => integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRouteBuilder.java (71%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/resources/application.properties (100%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/resources/xslt/aggregate.xsl (100%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/resources/xslt/classpath-transform.xsl (100%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/resources/xslt/extension-function.xsl (100%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/resources/xslt/html-to-text.xsl (100%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/resources/xslt/html-transform.xsl (100%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/resources/xslt/include.xsl (100%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/resources/xslt/include_not_existing_resource.xsl (100%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/main/resources/xslt/terminate.xsl (100%)
 rename integration-tests/xml/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlIT.java => integration-test-groups/xml/native/classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltIT.java (96%)
 rename integration-tests/xml/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlTest.java => integration-test-groups/xml/native/classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltTest.java (85%)
 rename {integration-tests/xml => integration-test-groups/xml/native/classpath}/src/test/resources/test.html (100%)
 copy integration-test-groups/{ => xml}/pom.xml (68%)
 copy {integration-tests/aws2-grouped => integration-tests-jvm/xml-grouped}/.gitignore (100%)
 copy {integration-tests/xml => integration-tests-jvm/xml-grouped}/pom.xml (83%)
 copy integration-tests/{aws2-grouped => xml-grouped}/.gitignore (100%)
 rename integration-tests/{xml => xml-grouped}/pom.xml (80%)