Author: pottlinger
Date: Sun Feb 15 16:32:26 2015
New Revision: 1659943

URL: http://svn.apache.org/r1659943
Log:
RAT-158: Applying patch to manually exclude xerces from doxia.

- It's unknown how long a doxia-patch will take; added TODO in pom.xml to
  remove it in the future.
- Thanks to Hervé Boutemy.

Modified:
    creadur/rat/trunk/RELEASE_NOTES.txt
    creadur/rat/trunk/apache-rat-plugin/pom.xml
    creadur/rat/trunk/pom.xml

Modified: creadur/rat/trunk/RELEASE_NOTES.txt
URL: 
http://svn.apache.org/viewvc/creadur/rat/trunk/RELEASE_NOTES.txt?rev=1659943&r1=1659942&r2=1659943&view=diff
==============================================================================
--- creadur/rat/trunk/RELEASE_NOTES.txt (original)
+++ creadur/rat/trunk/RELEASE_NOTES.txt Sun Feb 15 16:32:26 2015
@@ -6,6 +6,8 @@ Rat 0.12 (SNAPSHOT)
  * We've integrated Rat into the ASF Jenkins to ensure continuous builds with 
various JDK versions. 
  * Issues resolved (see http://issues.apache.org/jira):
    Bug
+    * [RAT-158] - Fix SAX-Parser warning by explicitly excluding xerces in 
Doxia 1.2.
+                  (thanks to Hervé Boutemy)
     * [RAT-173] - Allow complete skip of RAT plugin with rat.skip property
                   (thanks to Chris Burroughs)
     * [RAT-174] - CDDL1License still very slow, replace Pattern matching with 
simple String comparison

Modified: creadur/rat/trunk/apache-rat-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/creadur/rat/trunk/apache-rat-plugin/pom.xml?rev=1659943&r1=1659942&r2=1659943&view=diff
==============================================================================
--- creadur/rat/trunk/apache-rat-plugin/pom.xml (original)
+++ creadur/rat/trunk/apache-rat-plugin/pom.xml Sun Feb 15 16:32:26 2015
@@ -180,6 +180,12 @@
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-core</artifactId>
       <version>${doxiaVersion}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>xerces</groupId>
+          <artifactId>xercesImpl</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
@@ -205,6 +211,7 @@
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-plugin-testing-harness</artifactId>
       <version>1.1</version>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>

Modified: creadur/rat/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/creadur/rat/trunk/pom.xml?rev=1659943&r1=1659942&r2=1659943&view=diff
==============================================================================
--- creadur/rat/trunk/pom.xml (original)
+++ creadur/rat/trunk/pom.xml Sun Feb 15 16:32:26 2015
@@ -298,6 +298,19 @@ agnostic home for software distribution
           <artifactId>apache-rat-plugin</artifactId>
           <!-- Must use previous version, to avoid a cyclic reference -->
           <version>${previousRatVersion}</version>
+          <dependencies><!-- TODO remove exclusion when upgrading to new ASF 
parent or doxia release (RAT-158) -->
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-core</artifactId>
+              <version>1.2</version>
+              <exclusions>
+                <exclusion>
+                  <groupId>xerces</groupId>
+                  <artifactId>xercesImpl</artifactId>
+                </exclusion>
+              </exclusions>
+            </dependency>
+          </dependencies>
           <configuration>
             <excludes>
               <!-- This file only describes how to build the project and it 
has no license header -->


Reply via email to