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/01 15:05:48 UTC

[camel-quarkus] branch master updated: Rename the rest of java packages in itests

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


The following commit(s) were added to refs/heads/master by this push:
     new fae0277  Rename the rest of java packages in itests
     new d3fbee6  Merge pull request #103 from ppalaga/190801-rename-test-packages
fae0277 is described below

commit fae027770d2f84f07d68b4f06b848e7386b01ffd
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Thu Aug 1 11:17:56 2019 +0200

    Rename the rest of java packages in itests
---
 .../apache/camel/quarkus/component}/bean/CamelResource.java             | 2 +-
 .../camel => org/apache/camel/quarkus/component}/bean/CamelRoute.java   | 2 +-
 .../camel => org/apache/camel/quarkus/component}/bean/BeanITCase.java   | 2 +-
 .../it/camel => org/apache/camel/quarkus/component}/bean/BeanTest.java  | 2 +-
 .../apache/camel/quarkus/component}/core/cdi/CamelApplication.java      | 2 +-
 .../apache/camel/quarkus/component}/core/cdi/CamelServlet.java          | 2 +-
 .../apache/camel/quarkus/component}/core/cdi/CamelITCase.java           | 2 +-
 .../apache/camel/quarkus/component}/core/cdi/CamelTest.java             | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/integration-tests/bean/src/main/java/io/quarkus/it/camel/bean/CamelResource.java b/integration-tests/bean/src/main/java/org/apache/camel/quarkus/component/bean/CamelResource.java
similarity index 96%
rename from integration-tests/bean/src/main/java/io/quarkus/it/camel/bean/CamelResource.java
rename to integration-tests/bean/src/main/java/org/apache/camel/quarkus/component/bean/CamelResource.java
index 3491691..e4eb030 100644
--- a/integration-tests/bean/src/main/java/io/quarkus/it/camel/bean/CamelResource.java
+++ b/integration-tests/bean/src/main/java/org/apache/camel/quarkus/component/bean/CamelResource.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package io.quarkus.it.camel.bean;
+package org.apache.camel.quarkus.component.bean;
 
 import javax.enterprise.context.ApplicationScoped;
 import javax.inject.Inject;
diff --git a/integration-tests/bean/src/main/java/io/quarkus/it/camel/bean/CamelRoute.java b/integration-tests/bean/src/main/java/org/apache/camel/quarkus/component/bean/CamelRoute.java
similarity index 99%
rename from integration-tests/bean/src/main/java/io/quarkus/it/camel/bean/CamelRoute.java
rename to integration-tests/bean/src/main/java/org/apache/camel/quarkus/component/bean/CamelRoute.java
index 4ecd38e..054f591 100644
--- a/integration-tests/bean/src/main/java/io/quarkus/it/camel/bean/CamelRoute.java
+++ b/integration-tests/bean/src/main/java/org/apache/camel/quarkus/component/bean/CamelRoute.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package io.quarkus.it.camel.bean;
+package org.apache.camel.quarkus.component.bean;
 
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
diff --git a/integration-tests/bean/src/test/java/io/quarkus/it/camel/bean/BeanITCase.java b/integration-tests/bean/src/test/java/org/apache/camel/quarkus/component/bean/BeanITCase.java
similarity index 94%
rename from integration-tests/bean/src/test/java/io/quarkus/it/camel/bean/BeanITCase.java
rename to integration-tests/bean/src/test/java/org/apache/camel/quarkus/component/bean/BeanITCase.java
index 6abe6bc..c068337 100644
--- a/integration-tests/bean/src/test/java/io/quarkus/it/camel/bean/BeanITCase.java
+++ b/integration-tests/bean/src/test/java/org/apache/camel/quarkus/component/bean/BeanITCase.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package io.quarkus.it.camel.bean;
+package org.apache.camel.quarkus.component.bean;
 
 import io.quarkus.test.junit.SubstrateTest;
 
diff --git a/integration-tests/bean/src/test/java/io/quarkus/it/camel/bean/BeanTest.java b/integration-tests/bean/src/test/java/org/apache/camel/quarkus/component/bean/BeanTest.java
similarity index 96%
rename from integration-tests/bean/src/test/java/io/quarkus/it/camel/bean/BeanTest.java
rename to integration-tests/bean/src/test/java/org/apache/camel/quarkus/component/bean/BeanTest.java
index 1b894b8..48fac91 100644
--- a/integration-tests/bean/src/test/java/io/quarkus/it/camel/bean/BeanTest.java
+++ b/integration-tests/bean/src/test/java/org/apache/camel/quarkus/component/bean/BeanTest.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package io.quarkus.it.camel.bean;
+package org.apache.camel.quarkus.component.bean;
 
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
diff --git a/integration-tests/core-cdi/src/main/java/io/quarkus/it/camel/core/cdi/CamelApplication.java b/integration-tests/core-cdi/src/main/java/org/apache/camel/quarkus/component/core/cdi/CamelApplication.java
similarity index 97%
rename from integration-tests/core-cdi/src/main/java/io/quarkus/it/camel/core/cdi/CamelApplication.java
rename to integration-tests/core-cdi/src/main/java/org/apache/camel/quarkus/component/core/cdi/CamelApplication.java
index 71a9f4c..fe97ddc 100644
--- a/integration-tests/core-cdi/src/main/java/io/quarkus/it/camel/core/cdi/CamelApplication.java
+++ b/integration-tests/core-cdi/src/main/java/org/apache/camel/quarkus/component/core/cdi/CamelApplication.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package io.quarkus.it.camel.core.cdi;
+package org.apache.camel.quarkus.component.core.cdi;
 
 import java.io.InputStream;
 import java.nio.file.Files;
diff --git a/integration-tests/core-cdi/src/main/java/io/quarkus/it/camel/core/cdi/CamelServlet.java b/integration-tests/core-cdi/src/main/java/org/apache/camel/quarkus/component/core/cdi/CamelServlet.java
similarity index 97%
rename from integration-tests/core-cdi/src/main/java/io/quarkus/it/camel/core/cdi/CamelServlet.java
rename to integration-tests/core-cdi/src/main/java/org/apache/camel/quarkus/component/core/cdi/CamelServlet.java
index 3bf9298..937f29a 100644
--- a/integration-tests/core-cdi/src/main/java/io/quarkus/it/camel/core/cdi/CamelServlet.java
+++ b/integration-tests/core-cdi/src/main/java/org/apache/camel/quarkus/component/core/cdi/CamelServlet.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package io.quarkus.it.camel.core.cdi;
+package org.apache.camel.quarkus.component.core.cdi;
 
 import java.util.List;
 import java.util.stream.Collectors;
diff --git a/integration-tests/core-cdi/src/test/java/io/quarkus/it/camel/core/cdi/CamelITCase.java b/integration-tests/core-cdi/src/test/java/org/apache/camel/quarkus/component/core/cdi/CamelITCase.java
similarity index 94%
rename from integration-tests/core-cdi/src/test/java/io/quarkus/it/camel/core/cdi/CamelITCase.java
rename to integration-tests/core-cdi/src/test/java/org/apache/camel/quarkus/component/core/cdi/CamelITCase.java
index 8cbfc98..82c4823 100644
--- a/integration-tests/core-cdi/src/test/java/io/quarkus/it/camel/core/cdi/CamelITCase.java
+++ b/integration-tests/core-cdi/src/test/java/org/apache/camel/quarkus/component/core/cdi/CamelITCase.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package io.quarkus.it.camel.core.cdi;
+package org.apache.camel.quarkus.component.core.cdi;
 
 import io.quarkus.test.junit.SubstrateTest;
 
diff --git a/integration-tests/core-cdi/src/test/java/io/quarkus/it/camel/core/cdi/CamelTest.java b/integration-tests/core-cdi/src/test/java/org/apache/camel/quarkus/component/core/cdi/CamelTest.java
similarity index 96%
rename from integration-tests/core-cdi/src/test/java/io/quarkus/it/camel/core/cdi/CamelTest.java
rename to integration-tests/core-cdi/src/test/java/org/apache/camel/quarkus/component/core/cdi/CamelTest.java
index ffb8405..c17624c 100644
--- a/integration-tests/core-cdi/src/test/java/io/quarkus/it/camel/core/cdi/CamelTest.java
+++ b/integration-tests/core-cdi/src/test/java/org/apache/camel/quarkus/component/core/cdi/CamelTest.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package io.quarkus.it.camel.core.cdi;
+package org.apache.camel.quarkus.component.core.cdi;
 
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;