Browse Source

Add spring-mock to dependency management
Add ldap dependencies
Simplify spring dependencies

Carlos Sanchez 19 years ago
parent
commit
1dfc42550f
3 changed files with 31 additions and 14 deletions
  1. 0 1
      adapters/pom.xml
  2. 22 13
      core/pom.xml
  3. 9 0
      pom.xml

+ 0 - 1
adapters/pom.xml

@@ -20,7 +20,6 @@
     <dependency>
     <dependency>
       <groupId>org.springframework</groupId>
       <groupId>org.springframework</groupId>
       <artifactId>spring-mock</artifactId>
       <artifactId>spring-mock</artifactId>
-      <version>1.2.6</version>
       <scope>test</scope>
       <scope>test</scope>
     </dependency>
     </dependency>
   </dependencies>
   </dependencies>

+ 22 - 13
core/pom.xml

@@ -16,23 +16,11 @@
       <artifactId>spring-remoting</artifactId>
       <artifactId>spring-remoting</artifactId>
       <version>1.2.6</version>
       <version>1.2.6</version>
     </dependency>
     </dependency>
-    <!-- required due to problem in maven transitive deps -->
-    <dependency>
-      <groupId>org.springframework</groupId>
-      <artifactId>spring-context</artifactId>
-      <version>1.2.6</version>
-    </dependency>
-    <dependency>
-      <groupId>org.springframework</groupId>
-      <artifactId>spring-web</artifactId>
-      <version>1.2.6</version>
-    </dependency>
     <dependency>
     <dependency>
       <groupId>org.springframework</groupId>
       <groupId>org.springframework</groupId>
       <artifactId>spring-jdbc</artifactId>
       <artifactId>spring-jdbc</artifactId>
       <version>1.2.6</version>
       <version>1.2.6</version>
     </dependency>
     </dependency>
-    <!-- end required -->
     <dependency>
     <dependency>
       <groupId>org.springframework</groupId>
       <groupId>org.springframework</groupId>
       <artifactId>spring-support</artifactId>
       <artifactId>spring-support</artifactId>
@@ -42,7 +30,6 @@
     <dependency>
     <dependency>
       <groupId>org.springframework</groupId>
       <groupId>org.springframework</groupId>
       <artifactId>spring-mock</artifactId>
       <artifactId>spring-mock</artifactId>
-      <version>1.2.6</version>
       <scope>test</scope>
       <scope>test</scope>
     </dependency>
     </dependency>
     <dependency>
     <dependency>
@@ -67,6 +54,16 @@
       <artifactId>commons-codec</artifactId>
       <artifactId>commons-codec</artifactId>
       <version>1.3</version>
       <version>1.3</version>
     </dependency>
     </dependency>
+    <dependency>
+      <groupId>oro</groupId>
+      <artifactId>oro</artifactId>
+      <version>2.0.8</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+    </dependency>
     <dependency>
     <dependency>
       <groupId>aspectj</groupId>
       <groupId>aspectj</groupId>
       <artifactId>aspectjrt</artifactId>
       <artifactId>aspectjrt</artifactId>
@@ -85,5 +82,17 @@
       <version>1.7.3.0</version>
       <version>1.7.3.0</version>
       <scope>test</scope>
       <scope>test</scope>
     </dependency>
     </dependency>
+    <dependency>
+      <groupId>directory</groupId>
+      <artifactId>apacheds-core</artifactId>
+      <version>0.9.3</version>
+      <scope>test</scope>
+    </dependency> 
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock</artifactId>
+      <version>1.0.1</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
   </dependencies>
 </project>
 </project>

+ 9 - 0
pom.xml

@@ -249,4 +249,13 @@
     </plugins>
     </plugins>
   </reporting>
   </reporting>
 
 
+  <dependencyManagement>
+    <dependencies>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-mock</artifactId>
+      <version>1.2.6</version>
+    </dependency>
+    </dependencies>
+  </dependencyManagement>
 </project>
 </project>