You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by ve...@apache.org on 2022/06/02 18:27:34 UTC

[synapse] branch master updated: Update XmlUnit

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8b94c9d38 Update XmlUnit
8b94c9d38 is described below

commit 8b94c9d38a825abdb34e768e8580ac2e3ac9dc42
Author: Andreas Veithen <an...@gmail.com>
AuthorDate: Thu Jun 2 18:26:42 2022 +0000

    Update XmlUnit
---
 modules/commons/pom.xml                 | 5 +++--
 modules/transports/optional/fix/pom.xml | 5 +++--
 pom.xml                                 | 8 +++-----
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/modules/commons/pom.xml b/modules/commons/pom.xml
index 765c040fe..f19d57605 100644
--- a/modules/commons/pom.xml
+++ b/modules/commons/pom.xml
@@ -94,8 +94,9 @@
             <artifactId>commons-dbcp</artifactId>
         </dependency>
         <dependency>
-            <groupId>xmlunit</groupId>
-            <artifactId>xmlunit</artifactId>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-legacy</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.snmp4j</groupId>
diff --git a/modules/transports/optional/fix/pom.xml b/modules/transports/optional/fix/pom.xml
index 8ddabd4c3..c767c381c 100644
--- a/modules/transports/optional/fix/pom.xml
+++ b/modules/transports/optional/fix/pom.xml
@@ -115,8 +115,9 @@
             <artifactId>quickfixj-messages-all</artifactId>
         </dependency>
         <dependency>
-            <groupId>xmlunit</groupId>
-            <artifactId>xmlunit</artifactId>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-legacy</artifactId>
+            <scope>test</scope>
         </dependency>
     </dependencies>
 
diff --git a/pom.xml b/pom.xml
index fe39a145a..678be9f2b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -772,10 +772,9 @@
                 <scope>test</scope>
             </dependency>
             <dependency>
-                <groupId>xmlunit</groupId>
-                <artifactId>xmlunit</artifactId>
-                <version>${xmlunit.version}</version>
-                <scope>test</scope>
+                <groupId>org.xmlunit</groupId>
+                <artifactId>xmlunit-legacy</artifactId>
+                <version>2.9.0</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.axis2</groupId>
@@ -1127,7 +1126,6 @@
         <!-- Warning: log4j versions above 1.2.14 introduce additional transitive dependencies,
              some of which are not available from the Maven central repository. -->
         <log4j.version>1.2.14</log4j.version>
-        <xmlunit.version>1.3</xmlunit.version>
         <derby.version>10.4.2.0</derby.version>
         <wrapper.version>3.2.3</wrapper.version>
         <saxon.version>8.9</saxon.version>