You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2019/11/10 18:34:58 UTC

[cxf] 01/02: Fixing banned dependencies (jaxb-api)

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

reta pushed a commit to branch 3.3.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit ac1be213e67767f01af5b7077d882ee6f52e5895
Author: reta <dr...@gmail.com>
AuthorDate: Sun Nov 10 13:25:34 2019 -0500

    Fixing banned dependencies (jaxb-api)
    
    (cherry picked from commit d5b612c220bab496c3dab1731e56b3fea36c1b07)
    
    # Conflicts:
    #	systests/spring-boot/pom.xml
---
 systests/spring-boot/pom.xml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/systests/spring-boot/pom.xml b/systests/spring-boot/pom.xml
index e12a979..e1147a1 100644
--- a/systests/spring-boot/pom.xml
+++ b/systests/spring-boot/pom.xml
@@ -72,7 +72,7 @@
             </plugin>
         </plugins>
     </build>
-    
+
     <dependencyManagement>
         <dependencies>
             <dependency>
@@ -82,7 +82,7 @@
             </dependency>
         </dependencies>
     </dependencyManagement>
-    
+
     <dependencies>
         <dependency>
             <groupId>org.slf4j</groupId>
@@ -124,6 +124,12 @@
             <artifactId>spring-boot-starter-test</artifactId>
             <version>${cxf.spring.boot.version}</version>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.xmlunit</groupId>
+                    <artifactId>xmlunit-core</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 </project>