You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by at...@apache.org on 2009/05/16 23:41:28 UTC

svn commit: r775544 - /portals/applications/rss/trunk/rss-war/pom.xml

Author: ate
Date: Sat May 16 21:41:28 2009
New Revision: 775544

URL: http://svn.apache.org/viewvc?rev=775544&view=rev
Log:
APA-13: fixing rat-plugin configuration to exclude redistribution LICENSE files

Modified:
    portals/applications/rss/trunk/rss-war/pom.xml

Modified: portals/applications/rss/trunk/rss-war/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/rss/trunk/rss-war/pom.xml?rev=775544&r1=775543&r2=775544&view=diff
==============================================================================
--- portals/applications/rss/trunk/rss-war/pom.xml (original)
+++ portals/applications/rss/trunk/rss-war/pom.xml Sat May 16 21:41:28 2009
@@ -143,4 +143,25 @@
     </plugins>
 
   </build>
+  
+  <profiles>
+    <profile>
+      <id>rat</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>rat-maven-plugin</artifactId>            
+            <configuration>
+              <excludes combine.children="append">
+                <exclude>src/main/webapp/META-INF/JDOM-LICENSE</exclude>
+                <exclude>src/main/webapp/META-INF/SLF4J-LICENSE</exclude>
+              </excludes>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  
 </project>