You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ss...@apache.org on 2019/03/27 10:28:59 UTC

[sling-org-apache-sling-testing-sling-mock] branch master updated: exclude test resources from RAT

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

sseifert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock.git


The following commit(s) were added to refs/heads/master by this push:
     new 52749d3  exclude test resources from RAT
52749d3 is described below

commit 52749d3ee33c66833567d7fe9c9515be833566fb
Author: sseifert <ss...@pro-vision.de>
AuthorDate: Wed Mar 27 11:28:46 2019 +0100

    exclude test resources from RAT
---
 junit5/pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/junit5/pom.xml b/junit5/pom.xml
index 5a3c80a..b7d6815 100644
--- a/junit5/pom.xml
+++ b/junit5/pom.xml
@@ -117,6 +117,16 @@
                 <extensions>true</extensions>
             </plugin>
 
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>src/test/resources/**</exclude>
+                    </excludes>
+                </configuration>
+             </plugin>
+
         </plugins>
     </build>