This is an automated email from the ASF dual-hosted git repository. twolf pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
commit d34475cfa08124658f988c7d568f35b681b3685e Author: Thomas Wolf <[email protected]> AuthorDate: Wed Jan 7 22:48:47 2026 +0100 [releng] Release preparation Make sure that the maven-source-plugin uses a modern commons-io. Somehow it picks up 2.11.0, which is way too old. Force 2.20.0. Set deployAtEnd=true to avoid that anything is pushed to the deployment repository if something goes wrong when building a release. This is a partial back-port of commit aa9c94bb. --- pom.xml | 13 +++++++++++++ sshd-benchmarks/pom.xml | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a38b4773..0d6b4ff06 100644 --- a/pom.xml +++ b/pom.xml @@ -662,6 +662,14 @@ <build> <pluginManagement> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <!-- In case something goes wrong: don't push bundles to the deployment repository --> + <deployAtEnd>true</deployAtEnd> + </configuration> + </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> @@ -753,6 +761,11 @@ <artifactId>plexus-archiver</artifactId> <version>${plexus.archiver.version}</version> </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.20.0</version> + </dependency> </dependencies> </plugin> <plugin> diff --git a/sshd-benchmarks/pom.xml b/sshd-benchmarks/pom.xml index efb431ec6..7f98bf5da 100644 --- a/sshd-benchmarks/pom.xml +++ b/sshd-benchmarks/pom.xml @@ -33,6 +33,7 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jmh.version>1.37</jmh.version> <uberjar.name>benchmarks</uberjar.name> + <maven.javadoc.skip>true</maven.javadoc.skip> </properties> <dependencies> @@ -53,7 +54,7 @@ <artifactId>args4j</artifactId> <version>2.37</version> </dependency> - + <dependency> <groupId>org.apache.sshd</groupId> <artifactId>sshd-common</artifactId>
