[jboss-cvs] JBossAS SVN: r104761 - projects/jboss-classpool/trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu May 13 06:58:01 EDT 2010


Author: kabir.khan at jboss.com
Date: 2010-05-13 06:58:00 -0400 (Thu, 13 May 2010)
New Revision: 104761

Modified:
   projects/jboss-classpool/trunk/pom.xml
Log:
[CLASSPOOL-8] Don't depend on artifacts from deprecated repository

Modified: projects/jboss-classpool/trunk/pom.xml
===================================================================
--- projects/jboss-classpool/trunk/pom.xml	2010-05-13 10:38:00 UTC (rev 104760)
+++ projects/jboss-classpool/trunk/pom.xml	2010-05-13 10:58:00 UTC (rev 104761)
@@ -277,6 +277,30 @@
       <artifactId>jboss-deployers-impl</artifactId>
       <version>${version.org.jboss.deployers}</version>
       <scope>compile</scope>
+      <exclusions>
+        <!--  
+           2.0.0.Alpha3 contains references to 
+             wutka-dtdparser:dtdparser121:jar:1.2.1
+             apache-xerces:xml-apis:jar:2.9.1
+             apache-xerces:xercesImpl:jar:2.9.1 
+           which do not exist in the nexus repository they are instead called
+             com.wutka:dtdparser:1.21 
+             xml-apis:xml-apis:1.3.04
+             xerces:xercesImpl:2.9.1
+         -->
+        <exclusion>
+           <groupId>wutka-dtdparser</groupId>
+           <artifactId>dtdparser121</artifactId>
+        </exclusion>
+        <exclusion>
+           <groupId>apache-xerces</groupId>
+           <artifactId>xml-apis</artifactId>
+        </exclusion>
+        <exclusion>
+           <groupId>apache-xerces</groupId>
+           <artifactId>xercesImpl</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>sun-jaxb</groupId>
@@ -295,8 +319,36 @@
             <groupId>org.jboss</groupId>
             <artifactId>jboss-common-core</artifactId>
          </exclusion>
+         <!--  references trove:trove:jar:2.1.1 which is in the deprecated repository -->
+         <exclusion>
+            <groupId>org.jboss.aop</groupId>
+            <artifactId>jboss-aop</artifactId>
+         </exclusion>
+         <exclusion>
+            <groupId>apache-xerces</groupId>
+            <artifactId>xml-apis</artifactId>
+         </exclusion>
       </exclusions>
     </dependency>
+    
+    <!--  Dependencies overriding the ones excluded from jbossxb and jboss-kernel -->
+    <dependency>
+      <groupId>com.wutka</groupId>
+      <artifactId>dtdparser</artifactId>
+      <version>1.21</version>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.04</version>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.9.1</version>
+    </dependency>
+    <!--  END - Dependencies overriding the ones excluded from jbossxb and jboss-kernel -->
+    
 
     <dependency>
       <groupId>org.jboss</groupId>
@@ -315,6 +367,30 @@
       <artifactId>jboss-kernel</artifactId>
       <version>${version.org.jboss.kernel}</version>
       <scope>test</scope>
+      <exclusions>
+        <!--  
+           2.0.0.Alpha3 contains references to 
+             wutka-dtdparser:dtdparser121:jar:1.2.1
+             apache-xerces:xml-apis:jar:2.9.1
+             apache-xerces:xercesImpl:jar:2.9.1 
+           which do not exist in the nexus repository they are instead called
+             com.wutka:dtdparser:1.21 
+             xml-apis:xml-apis:1.3.04
+             xerces:xercesImpl:2.9.1
+         -->
+        <exclusion>
+           <groupId>wutka-dtdparser</groupId>
+           <artifactId>dtdparser121</artifactId>
+        </exclusion>
+        <exclusion>
+           <groupId>apache-xerces</groupId>
+           <artifactId>xml-apis</artifactId>
+        </exclusion>
+        <exclusion>
+           <groupId>apache-xerces</groupId>
+           <artifactId>xercesImpl</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.jboss.test</groupId>




More information about the jboss-cvs-commits mailing list