You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2020/03/30 10:09:23 UTC

[camel-quarkus] branch master updated: Add jaxb dependency #996

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

jamesnetherton 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 9f3c133  Add jaxb dependency #996
9f3c133 is described below

commit 9f3c133a85bfe0f28868e5570ee608bec2299490
Author: Galder ZamarrenĖƒo <ga...@zamarreno.com>
AuthorDate: Mon Mar 30 10:22:20 2020 +0200

    Add jaxb dependency #996
---
 extensions-support/aws/deployment/pom.xml | 4 ++++
 extensions-support/aws/runtime/pom.xml    | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/extensions-support/aws/deployment/pom.xml b/extensions-support/aws/deployment/pom.xml
index a9756dd..6a0be6c 100644
--- a/extensions-support/aws/deployment/pom.xml
+++ b/extensions-support/aws/deployment/pom.xml
@@ -50,6 +50,10 @@
             <artifactId>quarkus-jackson-deployment</artifactId>
         </dependency>
         <dependency>
+            <groupId>io.quarkus</groupId>
+            <artifactId>quarkus-jaxb-deployment</artifactId>
+        </dependency>
+        <dependency>
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-support-aws</artifactId>
         </dependency>
diff --git a/extensions-support/aws/runtime/pom.xml b/extensions-support/aws/runtime/pom.xml
index e763c12..854db98 100644
--- a/extensions-support/aws/runtime/pom.xml
+++ b/extensions-support/aws/runtime/pom.xml
@@ -54,6 +54,10 @@
             <artifactId>quarkus-jackson</artifactId>
         </dependency>
         <dependency>
+            <groupId>io.quarkus</groupId>
+            <artifactId>quarkus-jaxb</artifactId>
+        </dependency>
+        <dependency>
             <groupId>com.fasterxml.jackson.dataformat</groupId>
             <artifactId>jackson-dataformat-cbor</artifactId>
         </dependency>