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:00:17 UTC

tika git commit: TIKA-1905 - Fix JavaDoc errors when built on Java 8.

Repository: tika
Updated Branches:
  refs/heads/2.x 74e998d0f -> 41915dc3b


TIKA-1905 - Fix JavaDoc errors when built 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/41915dc3
Tree: http://git-wip-us.apache.org/repos/asf/tika/tree/41915dc3
Diff: http://git-wip-us.apache.org/repos/asf/tika/diff/41915dc3

Branch: refs/heads/2.x
Commit: 41915dc3b47ebd1cc1075d8849f8c0f3f9068842
Parents: 74e998d
Author: Bob Paulin <bo...@apache.org>
Authored: Sun Mar 20 00:00:01 2016 -0500
Committer: Bob Paulin <bo...@apache.org>
Committed: Sun Mar 20 00:00:01 2016 -0500

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


http://git-wip-us.apache.org/repos/asf/tika/blob/41915dc3/tika-parent/pom.xml
----------------------------------------------------------------------
diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index cd17304..08b955e 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -462,6 +462,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>