You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by gg...@apache.org on 2023/03/23 20:06:55 UTC

[mina-sshd] branch master updated: Must override dependency to build on Maven 3.9.x

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git


The following commit(s) were added to refs/heads/master by this push:
     new 77fde8c47 Must override dependency to build on Maven 3.9.x
77fde8c47 is described below

commit 77fde8c47ed1502ecf2c5b24369c27884430f931
Author: Gary Gregory <gg...@rocketsoftware.com>
AuthorDate: Thu Mar 23 16:06:51 2023 -0400

    Must override dependency to build on Maven 3.9.x
    
    Even though not declared, see MNG-6965, MNG-7744.
---
 pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index 27056106b..8b32f1006 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1143,6 +1143,14 @@
                     <groupId>net.revelc.code</groupId>
                     <artifactId>impsort-maven-plugin</artifactId>
                     <version>1.6.2</version>
+                    <dependencies>
+                        <!-- Must override dependency to build on Maven 3.9.x, even though not declared (see MNG-6965) -->
+                        <dependency>
+                            <groupId>org.codehaus.plexus</groupId>
+                            <artifactId>plexus-utils</artifactId>
+                            <version>3.0.24</version>
+                        </dependency>
+                    </dependencies>
                     <configuration>
                         <lineEnding>LF</lineEnding>
                         <groups>java.,javax.,org.w3c.,org.xml.,junit.</groups>