Author: wsmoak
Date: Sun May  7 18:38:25 2006
New Revision: 404891

URL: http://svn.apache.org/viewcvs?rev=404891&view=rev
Log:
Exclude the xml-apis dependency which is coming from Commons Validator.
Since we're excluding it from struts-core, we don't have to exclude it from the 
assembly.

Modified:
    struts/action/trunk/assembly/pom.xml
    struts/action/trunk/core/pom.xml

Modified: struts/action/trunk/assembly/pom.xml
URL: 
http://svn.apache.org/viewcvs/struts/action/trunk/assembly/pom.xml?rev=404891&r1=404890&r2=404891&view=diff
==============================================================================
--- struts/action/trunk/assembly/pom.xml (original)
+++ struts/action/trunk/assembly/pom.xml Sun May  7 18:38:25 2006
@@ -193,12 +193,6 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>xml-apis</groupId>
-      <artifactId>xml-apis</artifactId>
-      <version>2.0.2</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>3.8.1</version>

Modified: struts/action/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewcvs/struts/action/trunk/core/pom.xml?rev=404891&r1=404890&r2=404891&view=diff
==============================================================================
--- struts/action/trunk/core/pom.xml (original)
+++ struts/action/trunk/core/pom.xml Sun May  7 18:38:25 2006
@@ -143,6 +143,12 @@
             <groupId>commons-validator</groupId>
             <artifactId>commons-validator</artifactId>
             <version>1.3.0</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>xml-apis</groupId>
+                    <artifactId>xml-apis</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>


Reply via email to