Browse Source

Exclude spring-data-commons from spring-ldap-core

Rob Winch 11 years ago
parent
commit
94a0816153
2 changed files with 5 additions and 0 deletions
  1. 1 0
      ldap/ldap.gradle
  2. 4 0
      ldap/pom.xml

+ 1 - 0
ldap/ldap.gradle

@@ -19,6 +19,7 @@ dependencies {
         exclude(group: 'org.springframework', module: 'spring-core')
         exclude(group: 'org.springframework', module: 'spring-tx')
         exclude(group: 'org.springframework', module: 'spring-beans')
+        exclude(group: 'org.springframework.data', module: 'spring-data-commons')
     }
 
     testCompile "org.slf4j:slf4j-api:$slf4jVersion",

+ 4 - 0
ldap/pom.xml

@@ -63,6 +63,10 @@
           <artifactId>spring-core</artifactId>
           <groupId>org.springframework</groupId>
         </exclusion>
+        <exclusion>
+          <artifactId>spring-data-commons</artifactId>
+          <groupId>org.springframework.data</groupId>
+        </exclusion>
         <exclusion>
           <artifactId>commons-logging</artifactId>
           <groupId>commons-logging</groupId>