You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2019/06/04 12:31:20 UTC

[sling-org-apache-sling-app-cms] branch master updated: Updating RAT pattern to only exclude the ppt file

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

dklco pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git


The following commit(s) were added to refs/heads/master by this push:
     new 8006778  Updating RAT pattern to only exclude the ppt file
8006778 is described below

commit 800677863818c49ad66d48fe1d3b35cc11cdb385
Author: Dan Klco <dk...@apache.org>
AuthorDate: Tue Jun 4 08:31:07 2019 -0400

    Updating RAT pattern to only exclude the ppt file
---
 core/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/pom.xml b/core/pom.xml
index 5d45aa9..59427eb 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -71,8 +71,8 @@
                         <exclude>velocity.log</exclude>
                         <!-- don't check anything in target -->
                         <exclude>target/*</exclude>
-                        <exclude>src/test/resources/*.pp*</exclude>
-                        <exclude>src/test/resources/*.do*</exclude>
+                        <!-- for some reason Rat doesn't seem to pick up that PPTs are binary -->
+                        <exclude>src/test/resources/Sling.ppt</exclude>
                     </excludes>
                 </configuration>
                 <executions>