This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a commit to branch sshd-2.9.x
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
The following commit(s) were added to refs/heads/sshd-2.9.x by this push:
new 241693e6c Must override dependency to build on Maven 3.9.x
241693e6c is described below
commit 241693e6cb3c3b4f7e177d38bc3ca5103deea5df
Author: Gary Gregory <[email protected]>
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.
---
docs/changes/2.9.3.md | 1 +
pom.xml | 8 ++++++++
2 files changed, 9 insertions(+)
diff --git a/docs/changes/2.9.3.md b/docs/changes/2.9.3.md
index 50a9d919c..f17d024f5 100644
--- a/docs/changes/2.9.3.md
+++ b/docs/changes/2.9.3.md
@@ -4,6 +4,7 @@
*
[CVE-2023-35887](http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-35887)
/ [SSHD-1324](https://issues.apache.org/jira/browse/SSHD-1324) Rooted file
system can leak informations
* Fix reproducible builds issue
+* Support building with Maven 3.9.x
## Major code re-factoring
diff --git a/pom.xml b/pom.xml
index 677ed62e2..7a2a3b33f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1141,6 +1141,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>