From commits-return-11662-archive-asf-public=cust-asf.ponee.io@fineract.apache.org Thu Aug 20 06:47:25 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mailroute1-lw-us.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 5C45E18063F for ; Thu, 20 Aug 2020 08:47:25 +0200 (CEST) Received: from mail.apache.org (localhost [127.0.0.1]) by mailroute1-lw-us.apache.org (ASF Mail Server at mailroute1-lw-us.apache.org) with SMTP id 80FC1125628 for ; Thu, 20 Aug 2020 06:47:24 +0000 (UTC) Received: (qmail 5114 invoked by uid 500); 20 Aug 2020 06:47:24 -0000 Mailing-List: contact commits-help@fineract.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@fineract.apache.org Delivered-To: mailing list commits@fineract.apache.org Received: (qmail 5105 invoked by uid 99); 20 Aug 2020 06:47:24 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Aug 2020 06:47:24 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 27C0F890B8; Thu, 20 Aug 2020 06:47:24 +0000 (UTC) Date: Thu, 20 Aug 2020 06:47:24 +0000 To: "commits@fineract.apache.org" Subject: [fineract] branch develop updated: enable harmless pentaho support MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <159790604395.18520.572817959634156983@gitbox.apache.org> From: ptuomola@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: fineract X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: 8a3c1903a4c28bbd5fa13d94813a0e1a0ddb419e X-Git-Newrev: 153e7d07c15904856e01de689f736bac89349659 X-Git-Rev: 153e7d07c15904856e01de689f736bac89349659 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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"); } }