You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by bd...@apache.org on 2016/06/29 16:54:22 UTC

[2/6] shiro git commit: Disabled javadoc lint when using java 1.8

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 <bd...@stormpath.com>
Authored: Mon Jun 27 11:52:50 2016 -0700
Committer: Brian Demers <bd...@stormpath.com>
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>