You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by lg...@apache.org on 2020/04/08 08:49:51 UTC

[mina-sshd] branch master updated: Automatically download dependencies javadoc(s) if available

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

lgoldstein 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 6bfc6da  Automatically download dependencies javadoc(s) if available
6bfc6da is described below

commit 6bfc6daa4c45b1c6ba3867e08c98efbf96988830
Author: Lyor Goldstein <lg...@apache.org>
AuthorDate: Wed Apr 8 11:20:10 2020 +0300

    Automatically download dependencies javadoc(s) if available
---
 pom.xml | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f1d6757..4cce445 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1195,7 +1195,7 @@
                 <artifactId>maven-dependency-plugin</artifactId>
                 <executions>
                     <execution>
-                        <id>install</id>
+                        <id>download-sources</id>
                         <phase>install</phase>
                         <goals>    <!-- automatically download the dependency sources - useful for debugging -->
                             <goal>sources</goal>
@@ -1204,6 +1204,17 @@
                             <markersDirectory>${settings.localRepository}/org/apache/sshd/dependency-maven-plugin-markers</markersDirectory>
                         </configuration>
                     </execution>
+                    <execution>
+                        <id>download-javadoc</id>
+                        <phase>install</phase>
+                        <goals>    <!-- automatically download the dependency javadoc - useful for debugging -->
+                            <goal>resolve</goal>
+                        </goals>
+                        <configuration>
+                            <markersDirectory>${settings.localRepository}/org/apache/sshd/dependency-maven-plugin-markers</markersDirectory>
+                            <classifier>javadoc</classifier>
+                        </configuration>
+                    </execution>
                 </executions>
             </plugin>
             <plugin>