You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ta...@apache.org on 2016/07/11 08:43:34 UTC

svn commit: r1752131 - /ofbiz/trunk/build.gradle

Author: taher
Date: Mon Jul 11 08:43:34 2016
New Revision: 1752131

URL: http://svn.apache.org/viewvc?rev=1752131&view=rev
Log:
Allow gradle to generate JavaDocs even if they contain bad formatting - OFBIZ-7775

Gradle does not allow generating JavaDocs if they have javadocs that are not properly
formatted. This commit will override this behavior by adding the following code snippet:

javadoc.failOnError = false

However, the long term solution is to actually fix all the JavaDoc errors in our current
OFBiz API

Note that gradle will continue to show the errors in standard output, but the build will
not fail

Modified:
    ofbiz/trunk/build.gradle

Modified: ofbiz/trunk/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1752131&r1=1752130&r2=1752131&view=diff
==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Mon Jul 11 08:43:34 2016
@@ -244,6 +244,8 @@ jar {
     }
 }
 
+javadoc.failOnError = false
+
 /* ========================================================
  * Tasks
  * ======================================================== */