You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/08/02 08:09:58 UTC

[camel-k-runtime] 01/03: add maven dependencies for the java.xml.bind (jaxb) module #103

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 0b576e98b7f04168df2f35e4a7a5d826c5caa07d
Author: Ioannis Polyzos <i....@gmail.com>
AuthorDate: Fri Jul 26 17:41:58 2019 +0100

    add maven dependencies for the java.xml.bind (jaxb) module #103
---
 camel-k-runtime-core/pom.xml | 16 ++++++++++++++++
 pom.xml                      |  1 +
 2 files changed, 17 insertions(+)

diff --git a/camel-k-runtime-core/pom.xml b/camel-k-runtime-core/pom.xml
index de75da4..25d0318 100644
--- a/camel-k-runtime-core/pom.xml
+++ b/camel-k-runtime-core/pom.xml
@@ -63,6 +63,22 @@
             <version>${commons-io.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>javax.xml.bind</groupId>
+            <artifactId>jaxb-api</artifactId>
+            <version>${jaxb-api}</version>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-core</artifactId>
+            <version>${jaxb-api}</version>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-impl</artifactId>
+            <version>${jaxb-api}</version>
+        </dependency>
+
         <!-- ****************************** -->
         <!--                                -->
         <!-- TESTS                          -->
diff --git a/pom.xml b/pom.xml
index b8d9a18..44af2ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,6 +50,7 @@
         <snakeyaml.version>1.24</snakeyaml.version>
         <spock.version>1.3-groovy-2.5</spock.version>
         <jackson.version>2.9.9</jackson.version>
+        <jaxb-api>2.3.0</jaxb-api>
         <immutables.version>2.7.5</immutables.version>
         <semver4j.version>2.2.0</semver4j.version>
         <undertow.version>1.4.26.Final</undertow.version>