This is an automated email from the ASF dual-hosted git repository.
ppalaga 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 3844fd4 Fix protobuf itest dependency on deployment
3844fd4 is described below
commit 3844fd408f7c1ccc64ec2b87e39ea6a8491c0eff
Author: Lukas Lowinger <[email protected]>
AuthorDate: Sun Nov 22 21:21:16 2020 +0100
Fix protobuf itest dependency on deployment
---
.../main/resources/META-INF/quarkus-extension.yaml | 3 +--
integration-tests/protobuf/pom.xml | 28 ++++++++++++++++++++++
2 files changed, 29 insertions(+), 2 deletions(-)
diff --git
a/extensions/protobuf/runtime/src/main/resources/META-INF/quarkus-extension.yaml
b/extensions/protobuf/runtime/src/main/resources/META-INF/quarkus-extension.yaml
index b1b8771..8ac48e0 100644
---
a/extensions/protobuf/runtime/src/main/resources/META-INF/quarkus-extension.yaml
+++
b/extensions/protobuf/runtime/src/main/resources/META-INF/quarkus-extension.yaml
@@ -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"
diff --git a/integration-tests/protobuf/pom.xml
b/integration-tests/protobuf/pom.xml
index 99d5b3a..7762797 100644
--- a/integration-tests/protobuf/pom.xml
+++ b/integration-tests/protobuf/pom.xml
@@ -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>