You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/01/17 08:28:20 UTC

[maven-doxia] branch master updated: Exclude non-compatible transitive dependencies of xmlunit-core

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

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-doxia.git


The following commit(s) were added to refs/heads/master by this push:
     new 03e312b  Exclude non-compatible transitive dependencies of xmlunit-core
03e312b is described below

commit 03e312be1f7d8050a2ff0815ffc8a54d6c00ab8a
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Mon Jan 17 09:27:58 2022 +0100

    Exclude non-compatible transitive dependencies of xmlunit-core
---
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/pom.xml b/pom.xml
index 9305278..622c0b1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -153,6 +153,17 @@ under the License.
           <artifactId>xmlunit-core</artifactId>
           <version>2.8.4</version>
           <scope>test</scope>
+          <!-- Exclude due to https://github.com/xmlunit/xmlunit/issues/248 -->
+          <exclusions>
+           <exclusion>
+             <groupId>jakarta.activation</groupId>
+             <artifactId>jakarta.activation-api</artifactId>
+           </exclusion>
+           <exclusion>
+             <groupId>jakarta.xml.bind</groupId>
+             <artifactId>jakarta.xml.bind-api</artifactId>
+           </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>org.xmlunit</groupId>