You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by bo...@apache.org on 2016/03/20 06:04:38 UTC

tika git commit: TIKA-1905 - Fix JavaDoc Failures on Java 8

Repository: tika
Updated Branches:
  refs/heads/master a1243c7ab -> 4a40cf5fc


TIKA-1905 - Fix JavaDoc Failures on Java 8

Project: http://git-wip-us.apache.org/repos/asf/tika/repo
Commit: http://git-wip-us.apache.org/repos/asf/tika/commit/4a40cf5f
Tree: http://git-wip-us.apache.org/repos/asf/tika/tree/4a40cf5f
Diff: http://git-wip-us.apache.org/repos/asf/tika/diff/4a40cf5f

Branch: refs/heads/master
Commit: 4a40cf5fcfacf3a5f640c3cb6d4e55155e26cc28
Parents: a1243c7
Author: Bob Paulin <bo...@apache.org>
Authored: Sun Mar 20 00:04:27 2016 -0500
Committer: Bob Paulin <bo...@apache.org>
Committed: Sun Mar 20 00:04:27 2016 -0500

----------------------------------------------------------------------
 tika-parent/pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tika/blob/4a40cf5f/tika-parent/pom.xml
----------------------------------------------------------------------
diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index f3d08be..b0cb21a 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -409,6 +409,23 @@
         </plugins>
       </build>
     </profile>
+    <profile>
+      <id>doclint-java8-disable</id>
+      <activation>
+        <jdk>[1.8,)</jdk>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <configuration>
+              <additionalparam>-Xdoclint:none</additionalparam>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
   </profiles>
 
   <scm>