You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2021/08/06 15:00:35 UTC

[camel-quarkus] 03/03: Fixup cb05578 Use quarkus-grpc-common instead of quarkus-grpc in the gRPC extension

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

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

commit 13971d3fc4c466fb7276ba92177cc6dbc2483226
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Fri Aug 6 08:30:08 2021 +0200

    Fixup cb05578 Use quarkus-grpc-common instead of quarkus-grpc in the gRPC extension
---
 integration-test-groups/foundation/language/pom.xml         | 13 -------------
 .../quarkus/component/language/it/LanguageResource.java     |  2 +-
 integration-tests/grpc/pom.xml                              | 13 -------------
 3 files changed, 1 insertion(+), 27 deletions(-)

diff --git a/integration-test-groups/foundation/language/pom.xml b/integration-test-groups/foundation/language/pom.xml
index 087133a..5a62050 100644
--- a/integration-test-groups/foundation/language/pom.xml
+++ b/integration-test-groups/foundation/language/pom.xml
@@ -59,19 +59,6 @@
         <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory -->
         <dependency>
             <groupId>org.apache.camel.quarkus</groupId>
-            <artifactId>camel-quarkus-direct</artifactId>
-            <version>${project.version}</version>
-            <type>pom</type>
-            <scope>test</scope>
-            <exclusions>
-                <exclusion>
-                    <groupId>*</groupId>
-                    <artifactId>*</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-direct-deployment</artifactId>
             <version>${project.version}</version>
             <type>pom</type>
diff --git a/integration-test-groups/foundation/language/src/main/java/org/apache/camel/quarkus/component/language/it/LanguageResource.java b/integration-test-groups/foundation/language/src/main/java/org/apache/camel/quarkus/component/language/it/LanguageResource.java
index 87f5b7e..d583e58 100644
--- a/integration-test-groups/foundation/language/src/main/java/org/apache/camel/quarkus/component/language/it/LanguageResource.java
+++ b/integration-test-groups/foundation/language/src/main/java/org/apache/camel/quarkus/component/language/it/LanguageResource.java
@@ -38,7 +38,7 @@ public class LanguageResource {
     @POST
     @Consumes(MediaType.TEXT_PLAIN)
     @Produces(MediaType.TEXT_PLAIN)
-    public String resource(String body, @PathParam("route") String route) {
+    public String route(String body, @PathParam("route") String route) {
         return template.requestBody("direct:" + route, body, String.class);
     }
 }
diff --git a/integration-tests/grpc/pom.xml b/integration-tests/grpc/pom.xml
index 1ef33e2..aef9126 100644
--- a/integration-tests/grpc/pom.xml
+++ b/integration-tests/grpc/pom.xml
@@ -71,19 +71,6 @@
         <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory -->
         <dependency>
             <groupId>org.apache.camel.quarkus</groupId>
-            <artifactId>camel-quarkus-bean-deployment</artifactId>
-            <version>${project.version}</version>
-            <type>pom</type>
-            <scope>test</scope>
-            <exclusions>
-                <exclusion>
-                    <groupId>*</groupId>
-                    <artifactId>*</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-direct-deployment</artifactId>
             <version>${project.version}</version>
             <type>pom</type>