You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2017/08/01 19:02:21 UTC

svn commit: r1803689 - /commons/proper/email/trunk/pom.xml

Author: bodewig
Date: Tue Aug  1 19:02:21 2017
New Revision: 1803689

URL: http://svn.apache.org/viewvc?rev=1803689&view=rev
Log:
exclude .eml resources from RAT check

Thanks to Amey Jadiye

closes #2

Modified:
    commons/proper/email/trunk/pom.xml

Modified: commons/proper/email/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/email/trunk/pom.xml?rev=1803689&r1=1803688&r2=1803689&view=diff
==============================================================================
--- commons/proper/email/trunk/pom.xml (original)
+++ commons/proper/email/trunk/pom.xml Tue Aug  1 19:02:21 2017
@@ -354,6 +354,15 @@
               </ignorePathsToDelete>
             </configuration>
           </plugin>
+          <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>src/test/resources/eml/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 
@@ -419,7 +428,7 @@
                 <artifactId>apache-rat-plugin</artifactId>
                 <configuration>
                     <excludes>
-                        <exclude>src/test/resources/eml/*.eml</exclude>
+                        <exclude>src/test/resources/eml/**</exclude>
                     </excludes>
                 </configuration>
             </plugin>