Skip to content

Commit afbac35

Browse files
committed
MLE-12345 One more Black Duck fix
Missed this reference in another build.gradle file
1 parent 785c110 commit afbac35

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

marklogic-client-api-functionaltests/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,18 @@ dependencies {
2727
implementation "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
2828
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
2929
implementation "org.jdom:jdom2:2.0.6.1"
30-
implementation ("com.marklogic:ml-app-deployer:5.0.0") {
30+
31+
testImplementation 'org.apache.commons:commons-lang3:3.18.0'
32+
// Allows talking to the Manage API.
33+
testImplementation ("com.marklogic:ml-app-deployer:5.0.0") {
3134
exclude module: "marklogic-client-api"
35+
// Use the commons-lang3 declared above to keep Black Duck happy.
36+
exclude module: "commons-lang3"
3237
}
3338

3439
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
3540
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.1'
3641
testImplementation 'org.xmlunit:xmlunit-legacy:2.10.0'
37-
testImplementation 'org.apache.commons:commons-lang3:3.17.0'
3842
}
3943

4044
task runFragileTests(type: Test) {

marklogic-client-api/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ dependencies {
4444
testImplementation project(':examples')
4545

4646
testImplementation 'org.apache.commons:commons-lang3:3.18.0'
47-
4847
// Allows talking to the Manage API.
4948
testImplementation ("com.marklogic:ml-app-deployer:5.0.0") {
5049
exclude module: "marklogic-client-api"

0 commit comments

Comments
 (0)