Repository: shiro Updated Branches: refs/heads/1.2.x 227c35727 -> 1f4fdb3fa
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/84de2145 Tree: http://git-wip-us.apache.org/repos/asf/shiro/tree/84de2145 Diff: http://git-wip-us.apache.org/repos/asf/shiro/diff/84de2145 Branch: refs/heads/1.2.x Commit: 84de2145136589d267def756872365c7462eee45 Parents: 227c357 Author: Brian Demers <[email protected]> Authored: Mon Jun 27 11:52:50 2016 -0700 Committer: Brian Demers <[email protected]> Committed: Mon Jun 27 11:52:50 2016 -0700 ---------------------------------------------------------------------- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/shiro/blob/84de2145/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 66abb2e..20b8c89 100644 --- a/pom.xml +++ b/pom.xml @@ -975,6 +975,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>
