You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2015/10/13 16:54:40 UTC

svn commit: r1708425 - /sling/trunk/contrib/launchpad/karaf/pom.xml

Author: olli
Date: Tue Oct 13 14:54:38 2015
New Revision: 1708425

URL: http://svn.apache.org/viewvc?rev=1708425&view=rev
Log:
exclude **/target/ from rat

Modified:
    sling/trunk/contrib/launchpad/karaf/pom.xml

Modified: sling/trunk/contrib/launchpad/karaf/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/contrib/launchpad/karaf/pom.xml?rev=1708425&r1=1708424&r2=1708425&view=diff
==============================================================================
--- sling/trunk/contrib/launchpad/karaf/pom.xml (original)
+++ sling/trunk/contrib/launchpad/karaf/pom.xml Tue Oct 13 14:54:38 2015
@@ -49,4 +49,18 @@
     -->
   </modules>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes combine.children="append">
+            <exclude>**/target/</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>