You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by vo...@apache.org on 2020/11/07 01:22:13 UTC

[fineract] 01/01: Remove Joda exclusion from Modernizer

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

vorburger pushed a commit to branch vorburger-rm-modernizer-joda
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit f81d0c6c102fb2bb2f630b4167e12a9c472ebd20
Author: Michael Vorburger ⛑️ <mi...@vorburger.ch>
AuthorDate: Sat Nov 7 02:21:59 2020 +0100

    Remove Joda exclusion from Modernizer
---
 build.gradle | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/build.gradle b/build.gradle
index d6de806..a915091 100644
--- a/build.gradle
+++ b/build.gradle
@@ -638,24 +638,13 @@ configure(project.fineractJavaProjects) {
         }
     }
 
-    // Configuration for the modernizer plugin
-    // https://github.com/andygoossens/gradle-modernizer-plugin
+    // Configuration for https://github.com/andygoossens/gradle-modernizer-plugin
     modernizer {
         includeTestClasses = true
         failOnViolations = true
-
         violationLogLevel="error"
-
         javaVersion = project.targetCompatibility
-
-        ignorePackages = []
         ignoreGeneratedClasses = true
-
-        exclusions = []
-        exclusionPatterns = [
-            // To be removed when https://issues.apache.org/jira/browse/FINERACT-826 is fixed
-            'org/joda/time/.*'
-        ]
     }
 }