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/mina-sshd.git


The following commit(s) were added to refs/heads/master by this push:
     new 50d1d9fd2 Do not build the default source jar for sshd-osgi
50d1d9fd2 is described below

commit 50d1d9fd2f4d21a22f8eb978a2e4f47c1349e5bb
Author: Guillaume Nodet <gno...@gmail.com>
AuthorDate: Wed Jun 19 21:42:45 2024 +0200

    Do not build the default source jar for sshd-osgi
    
    It causes problems during the release and causes two different sources jars 
to be generated, and a wrong signature at the end.
---
 sshd-osgi/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/sshd-osgi/pom.xml b/sshd-osgi/pom.xml
index ed292f534..baea5ac3b 100644
--- a/sshd-osgi/pom.xml
+++ b/sshd-osgi/pom.xml
@@ -91,6 +91,14 @@
 
     <build>
         <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <configuration>
+                    <skipSource>true</skipSource>
+                </configuration>
+            </plugin>
+
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-dependency-plugin</artifactId>

Reply via email to