Skip to content

Commit

Permalink
Fixup cb05578 Use quarkus-grpc-common instead of quarkus-grpc in the …
Browse files Browse the repository at this point in the history
…gRPC extension
  • Loading branch information
ppalaga committed Aug 6, 2021
1 parent e304605 commit 13971d3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 27 deletions.
13 changes: 0 additions & 13 deletions integration-test-groups/foundation/language/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,6 @@
</dependency>

<!-- 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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
13 changes: 0 additions & 13 deletions integration-tests/grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,6 @@
</dependency>

<!-- 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>
Expand Down

0 comments on commit 13971d3

Please sign in to comment.