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
commit bfb1ee80d89a64cbaa8b2a9f848a5366f793cb48 Author: Lyor Goldstein <lgoldst...@apache.org> AuthorDate: Fri May 22 19:45:24 2020 +0300 Do not download sources or javadoc of our own modules --- pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pom.xml b/pom.xml index c22a1e8..537336a 100644 --- a/pom.xml +++ b/pom.xml @@ -1250,6 +1250,8 @@ <goal>sources</goal> </goals> <configuration> + <!-- no need to download our own sources - especially snapshot --> + <excludeGroupIds>org.apache.sshd</excludeGroupIds> <markersDirectory>${settings.localRepository}/org/apache/sshd/dependency-maven-plugin-markers</markersDirectory> <silent>${dependency.download.silent}</silent> </configuration> @@ -1261,6 +1263,8 @@ <goal>resolve</goal> </goals> <configuration> + <!-- no need to download our own documentation - especially snapshot --> + <excludeGroupIds>org.apache.sshd</excludeGroupIds> <markersDirectory>${settings.localRepository}/org/apache/sshd/dependency-maven-plugin-markers</markersDirectory> <classifier>javadoc</classifier> <silent>${dependency.download.silent}</silent>