You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ha...@apache.org on 2010/09/18 02:35:58 UTC

svn commit: r998376 - in /activemq/trunk: activemq-xmpp/pom.xml pom.xml

Author: hadrian
Date: Sat Sep 18 00:35:58 2010
New Revision: 998376

URL: http://svn.apache.org/viewvc?rev=998376&view=rev
Log:
Update rat plugin configuration

Modified:
    activemq/trunk/activemq-xmpp/pom.xml
    activemq/trunk/pom.xml

Modified: activemq/trunk/activemq-xmpp/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-xmpp/pom.xml?rev=998376&r1=998375&r2=998376&view=diff
==============================================================================
--- activemq/trunk/activemq-xmpp/pom.xml (original)
+++ activemq/trunk/activemq-xmpp/pom.xml Sat Sep 18 00:35:58 2010
@@ -130,7 +130,6 @@
     <defaultGoal>install</defaultGoal>
 
     <plugins>
-
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
@@ -158,6 +157,15 @@
           </excludes>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>**/resources/*.xsd</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
 
       <plugin>
         <groupId>org.jvnet.jaxb2.maven2</groupId>

Modified: activemq/trunk/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/pom.xml?rev=998376&r1=998375&r2=998376&view=diff
==============================================================================
--- activemq/trunk/pom.xml (original)
+++ activemq/trunk/pom.xml Sat Sep 18 00:35:58 2010
@@ -1043,11 +1043,16 @@
           <version>2.0</version>
         </plugin>
         <plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>rat-maven-plugin</artifactId>
-          <version>1.0-alpha-3</version>
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <version>0.7</version>
           <configuration>
             <excludeSubProjects>false</excludeSubProjects>
+            <excludes>
+              <!-- Eclipse files -->
+              <exclude>**/.*</exclude>
+              <exclude>**/eclipse-classes/**/*</exclude>
+            </excludes>
           </configuration>
         </plugin>
         <plugin>