Browse Source

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

pull/117/head
Rob Winch 12 years ago
parent
commit
94a0816153
  1. 1
      ldap/ldap.gradle
  2. 4
      ldap/pom.xml

1
ldap/ldap.gradle

@ -19,6 +19,7 @@ dependencies { @@ -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
ldap/pom.xml

@ -63,6 +63,10 @@ @@ -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>

Loading…
Cancel
Save