You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/03/07 10:45:11 UTC

[camel] 02/03: CAMEL-19062 - Clean up Parent POM - Woodstox

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

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

commit 9a42c8a3d56ac671df590e524b4c2b5d631b6752
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 7 11:30:33 2023 +0100

    CAMEL-19062 - Clean up Parent POM - Woodstox
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 core/camel-core-engine/pom.xml    | 7 +++++++
 core/camel-core/pom.xml           | 7 +++++++
 core/camel-management-api/pom.xml | 7 +++++++
 core/camel-xml-jaxp/pom.xml       | 7 +++++++
 4 files changed, 28 insertions(+)

diff --git a/core/camel-core-engine/pom.xml b/core/camel-core-engine/pom.xml
index fb7b18ce7a9..65aa0beb81d 100644
--- a/core/camel-core-engine/pom.xml
+++ b/core/camel-core-engine/pom.xml
@@ -310,7 +310,14 @@
                 <dependency>
                     <groupId>org.codehaus.woodstox</groupId>
                     <artifactId>woodstox-core-asl</artifactId>
+                    <version>${woodstox-version}</version>
                     <scope>test</scope>
+                    <exclusions>
+                        <exclusion>
+                            <groupId>javax.xml.stream</groupId>
+                            <artifactId>stax-api</artifactId>
+                        </exclusion>
+                    </exclusions>
                 </dependency>
             </dependencies>
         </profile>
diff --git a/core/camel-core/pom.xml b/core/camel-core/pom.xml
index 952edb441db..7e484ada8f3 100644
--- a/core/camel-core/pom.xml
+++ b/core/camel-core/pom.xml
@@ -170,7 +170,14 @@
         <dependency>
             <groupId>org.codehaus.woodstox</groupId>
             <artifactId>woodstox-core-asl</artifactId>
+            <version>${woodstox-version}</version>
             <scope>test</scope>
+                <exclusions>
+                    <exclusion>
+                        <groupId>javax.xml.stream</groupId>
+                        <artifactId>stax-api</artifactId>
+                    </exclusion>
+                </exclusions>
         </dependency>
         <dependency>
             <groupId>org.junit.jupiter</groupId>
diff --git a/core/camel-management-api/pom.xml b/core/camel-management-api/pom.xml
index d8832c8da1c..9266c43009e 100644
--- a/core/camel-management-api/pom.xml
+++ b/core/camel-management-api/pom.xml
@@ -57,7 +57,14 @@
         <dependency>
             <groupId>org.codehaus.woodstox</groupId>
             <artifactId>woodstox-core-asl</artifactId>
+            <version>${woodstox-version}</version>
             <scope>test</scope>
+                <exclusions>
+                    <exclusion>
+                        <groupId>javax.xml.stream</groupId>
+                        <artifactId>stax-api</artifactId>
+                    </exclusion>
+                </exclusions>
         </dependency>
     </dependencies>
 
diff --git a/core/camel-xml-jaxp/pom.xml b/core/camel-xml-jaxp/pom.xml
index 17e1e181f04..013ba297494 100644
--- a/core/camel-xml-jaxp/pom.xml
+++ b/core/camel-xml-jaxp/pom.xml
@@ -57,7 +57,14 @@
         <dependency>
             <groupId>org.codehaus.woodstox</groupId>
             <artifactId>woodstox-core-asl</artifactId>
+            <version>${woodstox-version}</version>
             <scope>test</scope>
+                <exclusions>
+                    <exclusion>
+                        <groupId>javax.xml.stream</groupId>
+                        <artifactId>stax-api</artifactId>
+                    </exclusion>
+                </exclusions>
         </dependency>
         <dependency>
             <groupId>org.junit.jupiter</groupId>