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/06/14 19:56:10 UTC

[fineract] branch develop updated: FINERACT-1038: Ignoring .settings directory in Spotless

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

vorburger 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 0547968  FINERACT-1038: Ignoring .settings directory in Spotless
0547968 is described below

commit 05479682e634dfd03bf4db5566c44169c3f61dc9
Author: Petri Tuomola <pe...@tuomola.org>
AuthorDate: Sun Jun 14 21:23:03 2020 +0300

    FINERACT-1038: Ignoring .settings directory in Spotless
---
 fineract-provider/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fineract-provider/build.gradle b/fineract-provider/build.gradle
index f6d1554..785b0ac 100644
--- a/fineract-provider/build.gradle
+++ b/fineract-provider/build.gradle
@@ -198,7 +198,7 @@ jacocoTestReport{
 spotless {
   format 'misc', {
    target '**/*.md', '**/*.properties', '**/*.gradle', '**/.gitignore', '**/*.yml', '**/*.xml', '**/**.json', '**/*.sql'
-   targetExclude '**/build/**', '**/bin/**'
+   targetExclude '**/build/**', '**/bin/**', '**/.settings/**'
    indentWithSpaces(4)
    endWithNewline()
    trimTrailingWhitespace()