Skip to content

Commit d89836d

Browse files
committed
Add ldif-core to build
Issue gh-610
1 parent 790ba44 commit d89836d

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

dependencies/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ dependencies {
3434
api "com.unboundid:unboundid-ldapsdk:4.0.14"
3535
api "commons-codec:commons-codec:1.15"
3636
api "commons-collections:commons-collections:3.2.2"
37+
api "commons-io:commons-io:2.11.0"
3738
api "commons-lang:commons-lang:2.6"
3839
api "commons-logging:commons-logging:1.2"
3940
api "gsbase:gsbase:2.0.1"

ldif/ldif-core/build.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ plugins {
33
}
44

55
dependencies {
6+
management platform(project(":spring-ldap-dependencies"))
67
implementation project(":spring-ldap-core")
78

8-
testImplementation "junit:junit",
9-
"commons-io:commons-io",
10-
"org.assertj:assertj-core"
11-
testImplementation ("log4j:log4j") {
9+
testImplementation platform('org.junit:junit-bom')
10+
testImplementation "org.junit.vintage:junit-vintage-engine"
11+
testImplementation "junit:junit"
12+
testImplementation "commons-io:commons-io"
13+
testImplementation "org.assertj:assertj-core"
14+
testImplementation ("log4j:log4j:1.2.17") {
1215
exclude group: 'javax.jms'
1316
exclude group: 'com.sun.jdmk'
1417
exclude group: 'com.sun.jmx'

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ include 'core'
2626
include 'core-tiger'
2727
include 'dependencies'
2828
//include 'test-support'
29-
//include 'ldif/ldif-core'
29+
include 'ldif/ldif-core'
3030
//include 'odm'
3131
////include 'sandbox'
3232
//include 'test/integration-tests'

0 commit comments

Comments
 (0)