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

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

commit e6cd7b1ac45bd9dd3be3927c81a55f388d12bf80
Author: Guillaume Nodet <gno...@gmail.com>
AuthorDate: Mon Dec 18 17:25:17 2023 +0100

    Break dependency cycle
---
 maven-xml-impl/pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/maven-xml-impl/pom.xml b/maven-xml-impl/pom.xml
index 2cba2dfba9..768e6cdeb0 100644
--- a/maven-xml-impl/pom.xml
+++ b/maven-xml-impl/pom.xml
@@ -54,6 +54,13 @@ under the License.
       <artifactId>plexus-xml</artifactId>
       <version>${plexusXmlVersion}</version>
       <scope>provided</scope>
+      <exclusions>
+        <!-- we need the exclusion to be able to release, else we have a cycle 
-->
+        <exclusion>
+          <groupId>org.apache.maven</groupId>
+          <artifactId>maven-xml-impl</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>
 

Reply via email to