This is an automated email from the ASF dual-hosted git repository.
nfilotto pushed a change to branch 2.16.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
from fa5fd0cae1 Ref #4749 - java-joor-dsl - Add templated route support to
native mode
new a726b92998 Fix #4710 to register reflection for FastStringBuffer and
resource bundle for XMLErrorResources (#4720)
new 8e89f985aa Fix #4043 to group xml tests (#4753)
new 5b25b14a76 Fix #4667 to use quay.io/jbosstm/lra-coordinator
new 0280ea8f84 Use QUARKUS_HTTP_PORT env in LraTestResource (#4670)
The 4 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:
catalog/pom.xml | 13 ++
.../deployment/XalanNativeImageProcessor.java | 5 +-
.../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 | 55 +++++++++
.../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 | 35 +-----
.../quarkus/component/xml/it/XsltBeanResource.java | 23 +++-
.../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 | 50 ++++++++
.../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 | 27 ++++-
.../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 | 23 +++-
.../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 | 67 +++-------
.../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 | 25 ++--
.../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 | 22 ++--
integration-tests-jvm/pom.xml | 3 +-
integration-tests-jvm/xml-grouped/.gitignore | 3 +
.../xml-grouped}/pom.xml | 132 +++++++++++++-------
.../quarkus/component/lra/it/LraTestResource.java | 6 +-
integration-tests/pom.xml | 2 +-
integration-tests/xml-grouped/.gitignore | 3 +
integration-tests/{xml => xml-grouped}/pom.xml | 125 ++++++++++---------
pom.xml | 19 +++
tooling/scripts/test-categories.yaml | 2 +-
60 files changed, 1201 insertions(+), 360 deletions(-)
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
(53%)
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
(67%)
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 (70%)
create mode 100644 integration-tests-jvm/xml-grouped/.gitignore
copy {integration-tests/xml => integration-tests-jvm/xml-grouped}/pom.xml (72%)
create mode 100644 integration-tests/xml-grouped/.gitignore
rename integration-tests/{xml => xml-grouped}/pom.xml (73%)