You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by gn...@apache.org on 2016/01/15 13:15:39 UTC

mina-sshd git commit: Allow build with JDK 1.8

Repository: mina-sshd
Updated Branches:
  refs/heads/master 66d53ac5a -> 6bd9a5f95


Allow build with JDK 1.8


Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo
Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/6bd9a5f9
Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/6bd9a5f9
Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/6bd9a5f9

Branch: refs/heads/master
Commit: 6bd9a5f9507c8d9aff4d3444c124e157dd75265a
Parents: 66d53ac
Author: Guillaume Nodet <gn...@apache.org>
Authored: Fri Jan 15 13:15:30 2016 +0100
Committer: Guillaume Nodet <gn...@apache.org>
Committed: Fri Jan 15 13:15:30 2016 +0100

----------------------------------------------------------------------
 sshd-core/pom.xml | 7 +++++++
 sshd-git/pom.xml  | 7 +++++++
 2 files changed, 14 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/6bd9a5f9/sshd-core/pom.xml
----------------------------------------------------------------------
diff --git a/sshd-core/pom.xml b/sshd-core/pom.xml
index 865646a..48fb71f 100644
--- a/sshd-core/pom.xml
+++ b/sshd-core/pom.xml
@@ -149,6 +149,13 @@
                     </excludes>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <additionalparam>-Xdoclint:none</additionalparam>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 

http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/6bd9a5f9/sshd-git/pom.xml
----------------------------------------------------------------------
diff --git a/sshd-git/pom.xml b/sshd-git/pom.xml
index 56891a1..1c67038 100644
--- a/sshd-git/pom.xml
+++ b/sshd-git/pom.xml
@@ -107,6 +107,13 @@
                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <additionalparam>-Xdoclint:none</additionalparam>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>