Fix javadoc generation
Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/e8b476c2 Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/e8b476c2 Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/e8b476c2 Branch: refs/heads/master Commit: e8b476c25a6b7e19a3242772eb7e4dcd77986f8b Parents: 165b63f Author: Guillaume Nodet <[email protected]> Authored: Mon May 28 15:39:35 2018 +0200 Committer: Guillaume Nodet <[email protected]> Committed: Mon May 28 15:39:35 2018 +0200 ---------------------------------------------------------------------- pom.xml | 5 ++++- sshd-cli/pom.xml | 3 --- sshd-contrib/pom.xml | 3 --- sshd-core/pom.xml | 7 ------- 4 files changed, 4 insertions(+), 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/e8b476c2/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 0fef5e6..f8d19cb 100644 --- a/pom.xml +++ b/pom.xml @@ -548,6 +548,9 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> + <configuration> + <additionalOptions>-Xdoclint:none </additionalOptions> + </configuration> </plugin> <plugin> <groupId>org.codehaus.gmaven</groupId> @@ -993,7 +996,7 @@ </dependency> </dependencies> </plugin> - <!-- Automatically remove artifacts from local repository on clean --> + <!-- Automatically remove artifacts from local repository on clean --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/e8b476c2/sshd-cli/pom.xml ---------------------------------------------------------------------- diff --git a/sshd-cli/pom.xml b/sshd-cli/pom.xml index 0925da8..6957d2d 100644 --- a/sshd-cli/pom.xml +++ b/sshd-cli/pom.xml @@ -118,9 +118,6 @@ <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/e8b476c2/sshd-contrib/pom.xml ---------------------------------------------------------------------- diff --git a/sshd-contrib/pom.xml b/sshd-contrib/pom.xml index f0ff459..f4e86f3 100644 --- a/sshd-contrib/pom.xml +++ b/sshd-contrib/pom.xml @@ -109,9 +109,6 @@ <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/e8b476c2/sshd-core/pom.xml ---------------------------------------------------------------------- diff --git a/sshd-core/pom.xml b/sshd-core/pom.xml index 510c551..dacf490 100644 --- a/sshd-core/pom.xml +++ b/sshd-core/pom.xml @@ -165,13 +165,6 @@ </excludes> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <additionalparam>-Xdoclint:none</additionalparam> - </configuration> - </plugin> </plugins> </build>
