better definition of spring dependencies
authorerik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sat, 2 Sep 2006 15:03:31 +0000 (15:03 +0000)
committererik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sat, 2 Sep 2006 15:03:31 +0000 (15:03 +0000)
removing unwanted dependencies for certain products (xml-apis,
xmlParserAPIs).

pom.xml
support/pom.xml

diff --git a/pom.xml b/pom.xml
index c5caa5337d5b23c341707bdac69b746d8ef7400e..0dba6ad04f3e1b7eb51ae4a8c4d1b76ef289a314 100644 (file)
--- a/pom.xml
+++ b/pom.xml
       <artifactId>jmock-cglib</artifactId>
       <version>1.1.0</version>
       <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>cglib</groupId>
+          <artifactId>cglib-full</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>
 
         <version>1.7.0</version>
       </dependency>
       <dependency>
-        <groupId>springframework</groupId>
+        <groupId>org.springframework</groupId>
         <artifactId>spring-beans</artifactId>
-        <version>1.2.6</version>
+        <version>1.2.8</version>
       </dependency>
       <dependency>
-        <groupId>springframework</groupId>
-        <artifactId>spring-hibernate</artifactId>
-        <version>1.2.6</version>
+        <groupId>org.springframework</groupId>
+        <artifactId>spring-orm</artifactId>
+        <version>1.2.8</version>
       </dependency>
       <!-- should be possible to remove the dependence on log4j -->
       <dependency>
         <groupId>dom4j</groupId>
         <artifactId>dom4j</artifactId>
         <version>1.6</version>
+        <exclusions>
+          <exclusion>
+            <groupId>xml-apis</groupId>
+            <artifactId>xml-apis</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>ehcache</groupId>
         <groupId>jaxen</groupId>
         <artifactId>jaxen</artifactId>
         <version>1.1-beta-9</version>
+        <exclusions>
+          <exclusion>
+            <groupId>xom</groupId>
+            <artifactId>xom</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>xerces</groupId>
+            <artifactId>xmlParserAPIs</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
 
     </dependencies>
index 909ee00bc9d7ad92800fe7c82115dc81d739f651..4030050d81871647725e57b529b3121a1724a683 100644 (file)
       <artifactId>commons-beanutils</artifactId>
     </dependency>
     <dependency>
-      <groupId>springframework</groupId>
+      <groupId>org.springframework</groupId>
       <artifactId>spring-beans</artifactId>
     </dependency>
     <dependency>
-      <groupId>springframework</groupId>
-      <artifactId>spring-hibernate</artifactId>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-orm</artifactId>
     </dependency>
     <!-- should be possible to remove the dependence on log4j -->
     <dependency>