You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2023/09/25 18:22:35 UTC

[camel-quarkus] 04/04: Add xslt prefix to grouped XML test sub-modules so that the intent is clear

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

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

commit ada6e0d8effa4e935c1511bfec8a3fef3375bacd
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Sep 22 14:30:40 2023 +0100

    Add xslt prefix to grouped XML test sub-modules so that the intent is clear
---
 .../xml/jvm/{aggregate => xslt-aggregate}/pom.xml            |  0
 .../camel/quarkus/component/xml/it/XsltAggregateBuilder.java |  0
 .../quarkus/component/xml/it/XsltAggregateResource.java      |  0
 .../src/main/resources/application.properties                |  0
 .../src/main/resources/xslt/aggregate.xsl                    |  0
 .../camel/quarkus/component/xml/it/XsltAggregateTest.java    |  0
 integration-test-groups/xml/jvm/{bean => xslt-bean}/pom.xml  |  0
 .../camel/quarkus/component/xml/it/XsltBeanProducers.java    |  0
 .../camel/quarkus/component/xml/it/XsltBeanResource.java     |  0
 .../src/main/resources/application.properties                |  0
 .../src/main/resources/xslt/classpath-transform.xsl          |  0
 .../apache/camel/quarkus/component/xml/it/XsltBeanTest.java  |  0
 integration-test-groups/xml/jvm/{file => xslt-file}/pom.xml  |  0
 .../camel/quarkus/component/xml/it/XsltFileResource.java     |  0
 .../src/main/resources/application.properties                |  0
 .../src/main/resources/xslt/classpath-transform.xsl          |  0
 .../apache/camel/quarkus/component/xml/it/XsltFileTest.java  |  0
 integration-test-groups/xml/jvm/{http => xslt-http}/pom.xml  |  0
 .../camel/quarkus/component/xml/it/XsltHttpResource.java     |  0
 .../src/main/resources/application.properties                |  0
 .../src/main/resources/xslt/classpath-transform.xsl          |  0
 .../camel/quarkus/component/xml/it/XmlHttpTestResource.java  |  0
 .../apache/camel/quarkus/component/xml/it/XsltHttpTest.java  |  0
 integration-test-groups/xml/jvm/{ref => xslt-ref}/pom.xml    |  0
 .../camel/quarkus/component/xml/it/XsltRefProducers.java     |  0
 .../camel/quarkus/component/xml/it/XsltRefResource.java      |  0
 .../src/main/resources/application.properties                |  0
 .../src/main/resources/xslt/classpath-transform.xsl          |  0
 .../apache/camel/quarkus/component/xml/it/XsltRefTest.java   |  0
 .../xml/native/{classpath => xslt-classpath}/pom.xml         |  0
 .../quarkus/component/xml/it/FunctionsConfiguration.java     |  0
 .../apache/camel/quarkus/component/xml/it/XsltProducers.java |  0
 .../apache/camel/quarkus/component/xml/it/XsltResource.java  |  0
 .../camel/quarkus/component/xml/it/XsltRouteBuilder.java     |  0
 .../src/main/resources/application.properties                |  0
 .../src/main/resources/xslt/aggregate.xsl                    |  0
 .../src/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
 .../src/main/resources/xslt/include.xsl                      |  0
 .../main/resources/xslt/include_not_existing_resource.xsl    |  0
 .../src/main/resources/xslt/saxon-extension-function.xsl     |  0
 .../src/main/resources/xslt/terminate.xsl                    |  0
 .../org/apache/camel/quarkus/component/xml/it/XsltIT.java    |  0
 .../org/apache/camel/quarkus/component/xml/it/XsltTest.java  |  0
 .../src/test/resources/test.html                             |  0
 integration-test-groups/xml/pom.xml                          | 12 ++++++------
 48 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/integration-test-groups/xml/jvm/aggregate/pom.xml b/integration-test-groups/xml/jvm/xslt-aggregate/pom.xml
similarity index 100%
rename from integration-test-groups/xml/jvm/aggregate/pom.xml
rename to integration-test-groups/xml/jvm/xslt-aggregate/pom.xml
diff --git a/integration-test-groups/xml/jvm/aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateBuilder.java b/integration-test-groups/xml/jvm/xslt-aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateBuilder.java
similarity index 100%
rename from integration-test-groups/xml/jvm/aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateBuilder.java
rename to integration-test-groups/xml/jvm/xslt-aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateBuilder.java
diff --git a/integration-test-groups/xml/jvm/aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateResource.java b/integration-test-groups/xml/jvm/xslt-aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateResource.java
similarity index 100%
rename from integration-test-groups/xml/jvm/aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateResource.java
rename to integration-test-groups/xml/jvm/xslt-aggregate/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateResource.java
diff --git a/integration-test-groups/xml/jvm/aggregate/src/main/resources/application.properties b/integration-test-groups/xml/jvm/xslt-aggregate/src/main/resources/application.properties
similarity index 100%
rename from integration-test-groups/xml/jvm/aggregate/src/main/resources/application.properties
rename to integration-test-groups/xml/jvm/xslt-aggregate/src/main/resources/application.properties
diff --git a/integration-test-groups/xml/jvm/aggregate/src/main/resources/xslt/aggregate.xsl b/integration-test-groups/xml/jvm/xslt-aggregate/src/main/resources/xslt/aggregate.xsl
similarity index 100%
rename from integration-test-groups/xml/jvm/aggregate/src/main/resources/xslt/aggregate.xsl
rename to integration-test-groups/xml/jvm/xslt-aggregate/src/main/resources/xslt/aggregate.xsl
diff --git a/integration-test-groups/xml/jvm/aggregate/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateTest.java b/integration-test-groups/xml/jvm/xslt-aggregate/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateTest.java
similarity index 100%
rename from integration-test-groups/xml/jvm/aggregate/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateTest.java
rename to integration-test-groups/xml/jvm/xslt-aggregate/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltAggregateTest.java
diff --git a/integration-test-groups/xml/jvm/bean/pom.xml b/integration-test-groups/xml/jvm/xslt-bean/pom.xml
similarity index 100%
rename from integration-test-groups/xml/jvm/bean/pom.xml
rename to integration-test-groups/xml/jvm/xslt-bean/pom.xml
diff --git a/integration-test-groups/xml/jvm/bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanProducers.java b/integration-test-groups/xml/jvm/xslt-bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanProducers.java
similarity index 100%
rename from integration-test-groups/xml/jvm/bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanProducers.java
rename to integration-test-groups/xml/jvm/xslt-bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanProducers.java
diff --git a/integration-test-groups/xml/jvm/bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanResource.java b/integration-test-groups/xml/jvm/xslt-bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanResource.java
similarity index 100%
rename from integration-test-groups/xml/jvm/bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanResource.java
rename to integration-test-groups/xml/jvm/xslt-bean/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltBeanResource.java
diff --git a/integration-test-groups/xml/jvm/bean/src/main/resources/application.properties b/integration-test-groups/xml/jvm/xslt-bean/src/main/resources/application.properties
similarity index 100%
rename from integration-test-groups/xml/jvm/bean/src/main/resources/application.properties
rename to integration-test-groups/xml/jvm/xslt-bean/src/main/resources/application.properties
diff --git a/integration-test-groups/xml/jvm/bean/src/main/resources/xslt/classpath-transform.xsl b/integration-test-groups/xml/jvm/xslt-bean/src/main/resources/xslt/classpath-transform.xsl
similarity index 100%
rename from integration-test-groups/xml/jvm/bean/src/main/resources/xslt/classpath-transform.xsl
rename to integration-test-groups/xml/jvm/xslt-bean/src/main/resources/xslt/classpath-transform.xsl
diff --git a/integration-test-groups/xml/jvm/bean/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltBeanTest.java b/integration-test-groups/xml/jvm/xslt-bean/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltBeanTest.java
similarity index 100%
rename from integration-test-groups/xml/jvm/bean/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltBeanTest.java
rename to integration-test-groups/xml/jvm/xslt-bean/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltBeanTest.java
diff --git a/integration-test-groups/xml/jvm/file/pom.xml b/integration-test-groups/xml/jvm/xslt-file/pom.xml
similarity index 100%
rename from integration-test-groups/xml/jvm/file/pom.xml
rename to integration-test-groups/xml/jvm/xslt-file/pom.xml
diff --git a/integration-test-groups/xml/jvm/file/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltFileResource.java b/integration-test-groups/xml/jvm/xslt-file/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltFileResource.java
similarity index 100%
rename from integration-test-groups/xml/jvm/file/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltFileResource.java
rename to integration-test-groups/xml/jvm/xslt-file/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltFileResource.java
diff --git a/integration-test-groups/xml/jvm/file/src/main/resources/application.properties b/integration-test-groups/xml/jvm/xslt-file/src/main/resources/application.properties
similarity index 100%
rename from integration-test-groups/xml/jvm/file/src/main/resources/application.properties
rename to integration-test-groups/xml/jvm/xslt-file/src/main/resources/application.properties
diff --git a/integration-test-groups/xml/jvm/file/src/main/resources/xslt/classpath-transform.xsl b/integration-test-groups/xml/jvm/xslt-file/src/main/resources/xslt/classpath-transform.xsl
similarity index 100%
rename from integration-test-groups/xml/jvm/file/src/main/resources/xslt/classpath-transform.xsl
rename to integration-test-groups/xml/jvm/xslt-file/src/main/resources/xslt/classpath-transform.xsl
diff --git a/integration-test-groups/xml/jvm/file/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltFileTest.java b/integration-test-groups/xml/jvm/xslt-file/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltFileTest.java
similarity index 100%
rename from integration-test-groups/xml/jvm/file/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltFileTest.java
rename to integration-test-groups/xml/jvm/xslt-file/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltFileTest.java
diff --git a/integration-test-groups/xml/jvm/http/pom.xml b/integration-test-groups/xml/jvm/xslt-http/pom.xml
similarity index 100%
rename from integration-test-groups/xml/jvm/http/pom.xml
rename to integration-test-groups/xml/jvm/xslt-http/pom.xml
diff --git a/integration-test-groups/xml/jvm/http/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltHttpResource.java b/integration-test-groups/xml/jvm/xslt-http/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltHttpResource.java
similarity index 100%
rename from integration-test-groups/xml/jvm/http/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltHttpResource.java
rename to integration-test-groups/xml/jvm/xslt-http/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltHttpResource.java
diff --git a/integration-test-groups/xml/jvm/http/src/main/resources/application.properties b/integration-test-groups/xml/jvm/xslt-http/src/main/resources/application.properties
similarity index 100%
rename from integration-test-groups/xml/jvm/http/src/main/resources/application.properties
rename to integration-test-groups/xml/jvm/xslt-http/src/main/resources/application.properties
diff --git a/integration-test-groups/xml/jvm/http/src/main/resources/xslt/classpath-transform.xsl b/integration-test-groups/xml/jvm/xslt-http/src/main/resources/xslt/classpath-transform.xsl
similarity index 100%
rename from integration-test-groups/xml/jvm/http/src/main/resources/xslt/classpath-transform.xsl
rename to integration-test-groups/xml/jvm/xslt-http/src/main/resources/xslt/classpath-transform.xsl
diff --git a/integration-test-groups/xml/jvm/http/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlHttpTestResource.java b/integration-test-groups/xml/jvm/xslt-http/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlHttpTestResource.java
similarity index 100%
rename from integration-test-groups/xml/jvm/http/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlHttpTestResource.java
rename to integration-test-groups/xml/jvm/xslt-http/src/test/java/org/apache/camel/quarkus/component/xml/it/XmlHttpTestResource.java
diff --git a/integration-test-groups/xml/jvm/http/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltHttpTest.java b/integration-test-groups/xml/jvm/xslt-http/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltHttpTest.java
similarity index 100%
rename from integration-test-groups/xml/jvm/http/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltHttpTest.java
rename to integration-test-groups/xml/jvm/xslt-http/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltHttpTest.java
diff --git a/integration-test-groups/xml/jvm/ref/pom.xml b/integration-test-groups/xml/jvm/xslt-ref/pom.xml
similarity index 100%
rename from integration-test-groups/xml/jvm/ref/pom.xml
rename to integration-test-groups/xml/jvm/xslt-ref/pom.xml
diff --git a/integration-test-groups/xml/jvm/ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefProducers.java b/integration-test-groups/xml/jvm/xslt-ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefProducers.java
similarity index 100%
rename from integration-test-groups/xml/jvm/ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefProducers.java
rename to integration-test-groups/xml/jvm/xslt-ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefProducers.java
diff --git a/integration-test-groups/xml/jvm/ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefResource.java b/integration-test-groups/xml/jvm/xslt-ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefResource.java
similarity index 100%
rename from integration-test-groups/xml/jvm/ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefResource.java
rename to integration-test-groups/xml/jvm/xslt-ref/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRefResource.java
diff --git a/integration-test-groups/xml/jvm/ref/src/main/resources/application.properties b/integration-test-groups/xml/jvm/xslt-ref/src/main/resources/application.properties
similarity index 100%
rename from integration-test-groups/xml/jvm/ref/src/main/resources/application.properties
rename to integration-test-groups/xml/jvm/xslt-ref/src/main/resources/application.properties
diff --git a/integration-test-groups/xml/jvm/ref/src/main/resources/xslt/classpath-transform.xsl b/integration-test-groups/xml/jvm/xslt-ref/src/main/resources/xslt/classpath-transform.xsl
similarity index 100%
rename from integration-test-groups/xml/jvm/ref/src/main/resources/xslt/classpath-transform.xsl
rename to integration-test-groups/xml/jvm/xslt-ref/src/main/resources/xslt/classpath-transform.xsl
diff --git a/integration-test-groups/xml/jvm/ref/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltRefTest.java b/integration-test-groups/xml/jvm/xslt-ref/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltRefTest.java
similarity index 100%
rename from integration-test-groups/xml/jvm/ref/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltRefTest.java
rename to integration-test-groups/xml/jvm/xslt-ref/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltRefTest.java
diff --git a/integration-test-groups/xml/native/classpath/pom.xml b/integration-test-groups/xml/native/xslt-classpath/pom.xml
similarity index 100%
rename from integration-test-groups/xml/native/classpath/pom.xml
rename to integration-test-groups/xml/native/xslt-classpath/pom.xml
diff --git a/integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/FunctionsConfiguration.java b/integration-test-groups/xml/native/xslt-classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/FunctionsConfiguration.java
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/FunctionsConfiguration.java
rename to integration-test-groups/xml/native/xslt-classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/FunctionsConfiguration.java
diff --git a/integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltProducers.java b/integration-test-groups/xml/native/xslt-classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltProducers.java
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltProducers.java
rename to integration-test-groups/xml/native/xslt-classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltProducers.java
diff --git a/integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltResource.java b/integration-test-groups/xml/native/xslt-classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltResource.java
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltResource.java
rename to integration-test-groups/xml/native/xslt-classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltResource.java
diff --git a/integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRouteBuilder.java b/integration-test-groups/xml/native/xslt-classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRouteBuilder.java
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRouteBuilder.java
rename to integration-test-groups/xml/native/xslt-classpath/src/main/java/org/apache/camel/quarkus/component/xml/it/XsltRouteBuilder.java
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/application.properties b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/application.properties
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/application.properties
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/application.properties
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/xslt/aggregate.xsl b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/aggregate.xsl
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/xslt/aggregate.xsl
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/aggregate.xsl
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/xslt/classpath-transform.xsl b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/classpath-transform.xsl
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/xslt/classpath-transform.xsl
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/classpath-transform.xsl
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/xslt/extension-function.xsl b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/extension-function.xsl
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/xslt/extension-function.xsl
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/extension-function.xsl
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/xslt/html-to-text.xsl b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/html-to-text.xsl
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/xslt/html-to-text.xsl
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/html-to-text.xsl
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/xslt/html-transform.xsl b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/html-transform.xsl
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/xslt/html-transform.xsl
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/html-transform.xsl
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/xslt/include.xsl b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/include.xsl
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/xslt/include.xsl
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/include.xsl
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/xslt/include_not_existing_resource.xsl b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/include_not_existing_resource.xsl
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/xslt/include_not_existing_resource.xsl
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/include_not_existing_resource.xsl
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/xslt/saxon-extension-function.xsl b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/saxon-extension-function.xsl
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/xslt/saxon-extension-function.xsl
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/saxon-extension-function.xsl
diff --git a/integration-test-groups/xml/native/classpath/src/main/resources/xslt/terminate.xsl b/integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/terminate.xsl
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/main/resources/xslt/terminate.xsl
rename to integration-test-groups/xml/native/xslt-classpath/src/main/resources/xslt/terminate.xsl
diff --git a/integration-test-groups/xml/native/classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltIT.java b/integration-test-groups/xml/native/xslt-classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltIT.java
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltIT.java
rename to integration-test-groups/xml/native/xslt-classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltIT.java
diff --git a/integration-test-groups/xml/native/classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltTest.java b/integration-test-groups/xml/native/xslt-classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltTest.java
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltTest.java
rename to integration-test-groups/xml/native/xslt-classpath/src/test/java/org/apache/camel/quarkus/component/xml/it/XsltTest.java
diff --git a/integration-test-groups/xml/native/classpath/src/test/resources/test.html b/integration-test-groups/xml/native/xslt-classpath/src/test/resources/test.html
similarity index 100%
rename from integration-test-groups/xml/native/classpath/src/test/resources/test.html
rename to integration-test-groups/xml/native/xslt-classpath/src/test/resources/test.html
diff --git a/integration-test-groups/xml/pom.xml b/integration-test-groups/xml/pom.xml
index 74343c21af..49e6bfb63f 100644
--- a/integration-test-groups/xml/pom.xml
+++ b/integration-test-groups/xml/pom.xml
@@ -37,12 +37,12 @@
 
     <modules>
         <!-- extensions a..z; do not remove this comment, it is important when sorting via  mvn process-resources -Pformat -->
-        <module>jvm/aggregate</module>
-        <module>jvm/bean</module>
-        <module>jvm/file</module>
-        <module>jvm/http</module>
-        <module>jvm/ref</module>
-        <module>native/classpath</module>
+        <module>jvm/xslt-aggregate</module>
+        <module>jvm/xslt-bean</module>
+        <module>jvm/xslt-file</module>
+        <module>jvm/xslt-http</module>
+        <module>jvm/xslt-ref</module>
+        <module>native/xslt-classpath</module>
     </modules>
 
 </project>