Author: rombert
Date: Fri Nov 6 08:15:41 2015
New Revision: 1712914
URL: http://svn.apache.org/viewvc?rev=1712914&view=rev
Log:
subsystem_base: ignore test -* base files when doing rat checks
These files are checked (and fail) when running on Jenkins, but not
locally
Modified:
sling/trunk/installer/factories/subsystem_base/pom.xml
Modified: sling/trunk/installer/factories/subsystem_base/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/installer/factories/subsystem_base/pom.xml?rev=1712914&r1=1712913&r2=1712914&view=diff
==============================================================================
--- sling/trunk/installer/factories/subsystem_base/pom.xml (original)
+++ sling/trunk/installer/factories/subsystem_base/pom.xml Fri Nov 6 08:15:41
2015
@@ -61,6 +61,15 @@
</instructions>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>src/test/resources/*-base</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>