You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ad...@apache.org on 2020/07/11 15:23:00 UTC

[ofbiz-framework] 02/02: Fixed: checkstyle maxErrors value (OFBIZ-11251)

This is an automated email from the ASF dual-hosted git repository.

adityasharma pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git

commit 19c29dacaa2669a242287fa523020821b34afc43
Author: Aditya Sharma <ad...@apache.org>
AuthorDate: Sat Jul 11 20:52:09 2020 +0530

    Fixed: checkstyle maxErrors value (OFBIZ-11251)
---
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index 455b78b..1f3713c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -75,7 +75,7 @@ checkstyle {
     // the sum of errors that were present before introducing the
     // ‘checkstyle’ tool present in the framework and in the official
     // plugins.
-    maxErrors = 38803
+    maxErrors = 38802
     // Currently there are a lot of errors so we need to temporarily
     // hide them to avoid polluting the terminal output.
     showViolations = false
@@ -568,7 +568,7 @@ task generateReadmeFiles(group: docsGroup, type: AsciidoctorTask) {
     sourceDir "${rootDir}"
     sources {
         include 'README.adoc', 'CHANGELOG.adoc', 'CONTRIBUTING.adoc'
-      }    
+      }
     outputDir file("${buildDir}/asciidoc/readme/")
 }