You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/08/28 17:54:18 UTC

[camel] branch master updated: Fixed test after CXF upgrade and some missing class

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

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 91bd0be  Fixed test after CXF upgrade and some missing class
91bd0be is described below

commit 91bd0bedb037eeaabe80d95e70f9e9707775c44e
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Aug 28 19:53:57 2020 +0200

    Fixed test after CXF upgrade and some missing class
---
 components/camel-soap/pom.xml      | 9 +++++++++
 components/camel-spring-ws/pom.xml | 8 ++++++++
 tests/camel-itest/pom.xml          | 8 ++++++++
 3 files changed, 25 insertions(+)

diff --git a/components/camel-soap/pom.xml b/components/camel-soap/pom.xml
index effd09b..f0907c2 100644
--- a/components/camel-soap/pom.xml
+++ b/components/camel-soap/pom.xml
@@ -92,6 +92,15 @@
             <artifactId>spring-test</artifactId>
             <scope>test</scope>
         </dependency>
+
+        <!-- needed by jetty http server to load class: org.jvnet.staxex.util.XMLStreamReaderToXMLStreamWriter -->
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-osgi</artifactId>
+            <version>${jaxb-version}</version>
+            <scope>test</scope>
+        </dependency>
+
     </dependencies>
 
     <build>
diff --git a/components/camel-spring-ws/pom.xml b/components/camel-spring-ws/pom.xml
index db44504..a7f3286 100644
--- a/components/camel-spring-ws/pom.xml
+++ b/components/camel-spring-ws/pom.xml
@@ -186,5 +186,13 @@
             <scope>test</scope>
         </dependency>
 
+        <!-- needed by jetty http server to load class: org.jvnet.staxex.util.XMLStreamReaderToXMLStreamWriter -->
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-osgi</artifactId>
+            <version>${jaxb-version}</version>
+            <scope>test</scope>
+        </dependency>
+
     </dependencies>
 </project>
diff --git a/tests/camel-itest/pom.xml b/tests/camel-itest/pom.xml
index 8746f34..663e57d 100644
--- a/tests/camel-itest/pom.xml
+++ b/tests/camel-itest/pom.xml
@@ -371,6 +371,14 @@
             <version>${jboss-logging-version}</version>
         </dependency>
 
+        <!-- needed by jetty http server to load class: org.jvnet.staxex.util.XMLStreamReaderToXMLStreamWriter -->
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-osgi</artifactId>
+            <version>${jaxb-version}</version>
+            <scope>test</scope>
+        </dependency>
+
     </dependencies>
 
     <build>