You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2015/02/14 02:59:43 UTC

svn commit: r1659745 - /maven/pom/trunk/maven/pom.xml

Author: hboutemy
Date: Sat Feb 14 01:59:43 2015
New Revision: 1659745

URL: http://svn.apache.org/r1659745
Log:
[MPOM-68] avoid Rat plugin warning

Modified:
    maven/pom/trunk/maven/pom.xml

Modified: maven/pom/trunk/maven/pom.xml
URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=1659745&r1=1659744&r2=1659745&view=diff
==============================================================================
--- maven/pom/trunk/maven/pom.xml (original)
+++ maven/pom/trunk/maven/pom.xml Sat Feb 14 01:59:43 2015
@@ -908,6 +908,23 @@ under the License.
             <testSourceDirectory>src/test/java</testSourceDirectory>
           </configuration>
         </plugin>
+        <plugin><!-- TODO remove when upgrading parent to 17 -->
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <dependencies><!-- see https://issues.apache.org/jira/browse/RAT-158 -->
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-core</artifactId>
+              <version>1.6</version>
+              <exclusions>
+                <exclusion>
+                  <groupId>xerces</groupId>
+                  <artifactId>xercesImpl</artifactId>
+                </exclusion>
+              </exclusions>
+            </dependency>
+          </dependencies>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>