Disabled javadoc lint when using java 1.8
Project: http://git-wip-us.apache.org/repos/asf/shiro/repo Commit: http://git-wip-us.apache.org/repos/asf/shiro/commit/eae601b9 Tree: http://git-wip-us.apache.org/repos/asf/shiro/tree/eae601b9 Diff: http://git-wip-us.apache.org/repos/asf/shiro/diff/eae601b9 Branch: refs/heads/master Commit: eae601b90aff7f06cc177d6c3aa4f68fb6f03952 Parents: 23afbb6 Author: Brian Demers <[email protected]> Authored: Mon Jun 27 11:52:50 2016 -0700 Committer: Brian Demers <[email protected]> Committed: Tue Jun 28 14:58:37 2016 -0700 ---------------------------------------------------------------------- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/shiro/blob/eae601b9/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 1102aa2..9c003eb 100644 --- a/pom.xml +++ b/pom.xml @@ -1100,6 +1100,16 @@ <profiles> <profile> + <id>jdk8</id> + <activation> + <jdk>[1.8,)</jdk> + </activation> + <properties> + <!-- Needed for the javadoc plugin when using JDK 1.8 --> + <additionalparam>-Xdoclint:none</additionalparam> + </properties> + </profile> + <profile> <id>docs</id> <build> <plugins>
