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/10/02 09:07:24 UTC

[camel-quarkus] branch main updated: Fix package name for xml-jaxp integration tests

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

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


The following commit(s) were added to refs/heads/main by this push:
     new b7daa0d8fc Fix package name for xml-jaxp integration tests
b7daa0d8fc is described below

commit b7daa0d8fc45921951829affd9257e8fb31f66f6
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Oct 2 07:09:18 2023 +0100

    Fix package name for xml-jaxp integration tests
---
 .../apache/camel/quarkus/component/xml/jaxp/XmlJaxpResource.java        | 2 +-
 .../apache/camel/quarkus/component/xml/jaxp/XmlJaxpRoutes.java          | 2 +-
 .../{ => org}/apache/camel/quarkus/component/xml/jaxp/XmlJaxpIT.java    | 2 +-
 .../{ => org}/apache/camel/quarkus/component/xml/jaxp/XmlJaxpTest.java  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/integration-tests/xml-jaxp/src/main/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpResource.java b/integration-tests/xml-jaxp/src/main/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpResource.java
similarity index 97%
rename from integration-tests/xml-jaxp/src/main/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpResource.java
rename to integration-tests/xml-jaxp/src/main/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpResource.java
index 1e4748d5fb..e2637af5ca 100644
--- a/integration-tests/xml-jaxp/src/main/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpResource.java
+++ b/integration-tests/xml-jaxp/src/main/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpResource.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package apache.camel.quarkus.component.xml.jaxp;
+package org.apache.camel.quarkus.component.xml.jaxp;
 
 import javax.xml.transform.OutputKeys;
 
diff --git a/integration-tests/xml-jaxp/src/main/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpRoutes.java b/integration-tests/xml-jaxp/src/main/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpRoutes.java
similarity index 99%
rename from integration-tests/xml-jaxp/src/main/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpRoutes.java
rename to integration-tests/xml-jaxp/src/main/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpRoutes.java
index f2c1cf6d75..b7c085fce8 100644
--- a/integration-tests/xml-jaxp/src/main/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpRoutes.java
+++ b/integration-tests/xml-jaxp/src/main/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpRoutes.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package apache.camel.quarkus.component.xml.jaxp;
+package org.apache.camel.quarkus.component.xml.jaxp;
 
 import java.io.ByteArrayOutputStream;
 import java.io.InputStream;
diff --git a/integration-tests/xml-jaxp/src/test/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpIT.java b/integration-tests/xml-jaxp/src/test/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpIT.java
similarity index 94%
rename from integration-tests/xml-jaxp/src/test/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpIT.java
rename to integration-tests/xml-jaxp/src/test/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpIT.java
index bdc75f1777..34abff58d6 100644
--- a/integration-tests/xml-jaxp/src/test/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpIT.java
+++ b/integration-tests/xml-jaxp/src/test/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpIT.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package apache.camel.quarkus.component.xml.jaxp;
+package org.apache.camel.quarkus.component.xml.jaxp;
 
 import io.quarkus.test.junit.QuarkusIntegrationTest;
 
diff --git a/integration-tests/xml-jaxp/src/test/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpTest.java b/integration-tests/xml-jaxp/src/test/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpTest.java
similarity index 99%
rename from integration-tests/xml-jaxp/src/test/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpTest.java
rename to integration-tests/xml-jaxp/src/test/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpTest.java
index 2eb81ce4b1..bb2680fe02 100644
--- a/integration-tests/xml-jaxp/src/test/java/apache/camel/quarkus/component/xml/jaxp/XmlJaxpTest.java
+++ b/integration-tests/xml-jaxp/src/test/java/org/apache/camel/quarkus/component/xml/jaxp/XmlJaxpTest.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package apache.camel.quarkus.component.xml.jaxp;
+package org.apache.camel.quarkus.component.xml.jaxp;
 
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;