Skip to content

Commit

Permalink
Fix protobuf itest dependency on deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
llowinge authored and ppalaga committed Nov 23, 2020
1 parent 8bd2f28 commit 3844fd4
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@
name: "Camel Protobuf"
description: "Serialize and deserialize Java objects using Google's Protocol buffers"
metadata:
unlisted: true
guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/protobuf.html"
categories:
- "integration"
status:
- "preview"
- "stable"
28 changes: 28 additions & 0 deletions integration-tests/protobuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,34 @@
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</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-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-protobuf-deployment</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 3844fd4

Please sign in to comment.