Repository: giraph Updated Branches: refs/heads/trunk b5b76c284 -> e5f851aac
GIRAPH-1055: Javadoc fails build with Java 8 Summary: Java 8 javadoc has stricter checking, which results in mvn javadoc:javadoc failing: Example: 100 errors 200 warnings [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary: [INFO] [INFO] Apache Giraph Parent ............................... SUCCESS [ 1.196 s] [INFO] Apache Giraph Core ................................. FAILURE [ 9.583 s] Test Plan: [INFO] --- maven-javadoc-plugin:2.9:javadoc (default-cli) @ giraph-dist --- [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary: [INFO] [INFO] Apache Giraph Parent ............................... SUCCESS [ 1.093 s] [INFO] Apache Giraph Core ................................. SUCCESS [ 10.934 s] [INFO] Apache Giraph Blocks Framework ..................... SUCCESS [ 3.245 s] [INFO] Apache Giraph Examples ............................. SUCCESS [ 3.841 s] [INFO] Apache Giraph Accumulo I/O ......................... SUCCESS [ 2.048 s] [INFO] Apache Giraph HBase I/O ............................ SUCCESS [ 1.132 s] [INFO] Apache Giraph HCatalog I/O ......................... SUCCESS [ 3.053 s] [INFO] Apache Giraph Gora I/O ............................. SUCCESS [ 3.500 s] [INFO] Apache Giraph Rexster I/O .......................... SUCCESS [ 0.091 s] [INFO] Apache Giraph Rexster Kibble ....................... SUCCESS [ 1.276 s] [INFO] Apache Giraph Rexster I/O Formats .................. SUCCESS [ 3.193 s] [INFO] Apache Giraph Distribution ......................... SUCCESS [ 2.074 s] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 35.880 s [INFO] Finished at: 2016-04-22T16:09:04-07:00 [INFO] Final Memory: 62M/1131M [INFO] ------------------------------------------------------------------------ Reviewers: maja.kabiljo, sergey.edunov Reviewed By: sergey.edunov Differential Revision: https://reviews.facebook.net/D57105 Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/e5f851aa Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/e5f851aa Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/e5f851aa Branch: refs/heads/trunk Commit: e5f851aacf84385da626810719e34d9767fd0c44 Parents: b5b76c2 Author: Avery Ching <[email protected]> Authored: Fri Apr 22 16:07:22 2016 -0700 Committer: Avery Ching <[email protected]> Committed: Fri Apr 22 16:18:14 2016 -0700 ---------------------------------------------------------------------- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/e5f851aa/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 846090a..45cbca9 100644 --- a/pom.xml +++ b/pom.xml @@ -671,6 +671,14 @@ under the License. <version>2.9</version> <configuration> <javadocExecutable>${project.build.javaHome}/bin/javadoc</javadocExecutable> + <!-- + JDK8 adds lots of strict checking in javadoc, disabling for now. + --> + <additionalparam>-Xdoclint:none</additionalparam> + <!-- + Don't fail the build if javadoc fails. + --> + <failOnError>false</failOnError> </configuration> </plugin> <plugin>
