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

ptuomola pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 153e7d0  enable harmless pentaho support
153e7d0 is described below

commit 153e7d07c15904856e01de689f736bac89349659
Author: xurror <[email protected]>
AuthorDate: Thu Aug 20 05:27:15 2020 +0100

    enable harmless pentaho support
---
 .../infrastructure/classdupes/ClasspathHellDuplicatesChecker.java    | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/fineract-provider/src/test/java/org/apache/fineract/infrastructure/classdupes/ClasspathHellDuplicatesChecker.java
 
b/fineract-provider/src/test/java/org/apache/fineract/infrastructure/classdupes/ClasspathHellDuplicatesChecker.java
index d7e05e2..d81b32b 100644
--- 
a/fineract-provider/src/test/java/org/apache/fineract/infrastructure/classdupes/ClasspathHellDuplicatesChecker.java
+++ 
b/fineract-provider/src/test/java/org/apache/fineract/infrastructure/classdupes/ClasspathHellDuplicatesChecker.java
@@ -163,6 +163,9 @@ public class ClasspathHellDuplicatesChecker {
                 // errorprone with Java 11 integration leaks to classpath, 
which
                 // causes a conflict between
                 // checkerframework/checker-qual and checkerframework/dataflow
-                || 
resourcePath.startsWith("org/checkerframework/dataflow/qual/");
+                || 
resourcePath.startsWith("org/checkerframework/dataflow/qual/")
+                // Pentaho reports harmless duplicates
+                || resourcePath.endsWith("overview.html") || 
resourcePath.endsWith("classic-engine.properties")
+                || resourcePath.endsWith("loader.properties");
     }
 }

Reply via email to