exclude logs and banners from RAT check
diff --git a/service/src/main/java/org/apache/fineract/cn/provisioner/internal/service/TenantApplicationService.java b/service/src/main/java/org/apache/fineract/cn/provisioner/internal/service/TenantApplicationService.java
index ea343fd..a92d2b2 100644
--- a/service/src/main/java/org/apache/fineract/cn/provisioner/internal/service/TenantApplicationService.java
+++ b/service/src/main/java/org/apache/fineract/cn/provisioner/internal/service/TenantApplicationService.java
@@ -144,7 +144,7 @@
 
       //InitializeResources on the service being added should occur last, for two reasons:
       // 1.) When the initialization event is put on the queue for this app/tenant combo, the app is fully ready for business.
-      // 2.) If the app depeneds on the provisioning of identitypermissions in its initialization, those resources will be there.
+      // 2.) If the app depends on the provisioning of identitypermissions in its initialization, those resources will be there.
       anubisInitializer.initializeResources(tenantIdentifier, x.name, x.uri);
     });
   }
diff --git a/shared.gradle b/shared.gradle
index 0969429..7a3ccbd 100644
--- a/shared.gradle
+++ b/shared.gradle
@@ -111,7 +111,9 @@
             "gradlew",
             "gradlew.bat",
             "README.md",
-            "**/.dockerignore/**"
+            "**/.dockerignore/**",
+            "**/logs/**/*.log",
+            "**/banner.txt"
     ]
     plainOutput = true
 }